<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Artificial and Computational Intelligence on Arshad Siddiqui</title><link>https://arshadhs.github.io/categories/artificial-and-computational-intelligence/</link><description>Recent content in Artificial and Computational Intelligence on Arshad Siddiqui</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://arshadhs.github.io/categories/artificial-and-computational-intelligence/index.xml" rel="self" type="application/rss+xml"/><item><title>Artificial Intelligence</title><link>https://arshadhs.github.io/docs/ai/060-artificial-and-computer-intelligence/010-introduction-to-artificial-intelligence/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://arshadhs.github.io/docs/ai/060-artificial-and-computer-intelligence/010-introduction-to-artificial-intelligence/</guid><description>&lt;h1 id="artificial-intelligence">
 Artificial Intelligence
 
 &lt;a class="anchor" href="#artificial-intelligence">#&lt;/a>
 
&lt;/h1>
&lt;p>Artificial Intelligence (AI) is concerned with building systems that can &lt;strong>perceive, reason, learn, decide and act&lt;/strong> in ways that achieve useful goals.&lt;/p>
&lt;p>The foundations of AI, its major application areas, four classic ways of thinking about intelligence, important milestones in its development, and some of the risks that accompany increasingly capable AI systems.&lt;/p>
&lt;h2 id="learning-objectives">
 Learning Objectives
 
 &lt;a class="anchor" href="#learning-objectives">#&lt;/a>
 
&lt;/h2>
&lt;ul>
&lt;li>explain what intelligence and artificial intelligence mean in practical terms&lt;/li>
&lt;li>identify the major disciplines that contributed to AI&lt;/li>
&lt;li>distinguish &lt;strong>thinking humanly&lt;/strong>, &lt;strong>acting humanly&lt;/strong>, &lt;strong>thinking rationally&lt;/strong> and &lt;strong>acting rationally&lt;/strong>&lt;/li>
&lt;li>explain the idea behind the &lt;strong>Turing Test&lt;/strong>&lt;/li>
&lt;li>describe why the rational-agent view is central to modern AI&lt;/li>
&lt;li>recognise important application areas and risks of AI&lt;/li>
&lt;/ul>
&lt;h2 id="big-picture">
 Big Picture
 
 &lt;a class="anchor" href="#big-picture">#&lt;/a>
 
&lt;/h2>


&lt;pre class="mermaid">flowchart TD
 A[Artificial Intelligence] --&amp;gt; B[Human-like]
 A --&amp;gt; C[Rational]
 B --&amp;gt; D[Think like humans]
 B --&amp;gt; E[Act like humans]
 C --&amp;gt; F[Think rationally]
 C --&amp;gt; G[Act rationally]

 style A fill:#C8E6C9
 style B fill:#E1F5FE
 style C fill:#FFF9C4
 style D fill:#EDE7F6
 style E fill:#EDE7F6
 style F fill:#C8E6C9
 style G fill:#C8E6C9&lt;/pre>
&lt;hr>
&lt;ol>
&lt;li>Agent&lt;/li>
&lt;li>Explore (all possible solutions)&lt;/li>
&lt;li>Environment&lt;/li>
&lt;li>Sensor → i/p → Percept&lt;/li>
&lt;li>Actuator&lt;/li>
&lt;li>Action&lt;/li>
&lt;li>Initial State: Source&lt;/li>
&lt;li>Transition Model&lt;/li>
&lt;li>Random-isation&lt;/li>
&lt;li>Learned Info → FACT → Knowledge Base&lt;/li>
&lt;li>Backtracking&lt;/li>
&lt;/ol>
&lt;ul>
&lt;li>State Space Transition Diagram / Search Tree&lt;/li>
&lt;li>Performance Measure → Numerical Measure (Minimise or Maximise)&lt;/li>
&lt;/ul>
&lt;p>M2 → Search
M4 → Game
M5 → Knowledge → Fact → KB → Inference&lt;/p></description></item><item><title>Intelligent Agents and Environments</title><link>https://arshadhs.github.io/docs/ai/060-artificial-and-computer-intelligence/020-intelligent-agents-and-environments/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://arshadhs.github.io/docs/ai/060-artificial-and-computer-intelligence/020-intelligent-agents-and-environments/</guid><description>&lt;h1 id="intelligent-agents-and-environments">
 Intelligent Agents and Environments
 
 &lt;a class="anchor" href="#intelligent-agents-and-environments">#&lt;/a>
 
&lt;/h1>
&lt;p>An intelligent agent connects &lt;strong>perception&lt;/strong> with &lt;strong>action&lt;/strong>. It observes an environment through sensors, uses the information it receives to decide what to do, and affects the environment through actuators.&lt;/p>
&lt;p>Develop the core vocabulary for reasoning about intelligent agents: percepts, actions, rationality, performance measures, PEAS and the different properties an environment can have.&lt;/p>
&lt;h2 id="learning-objectives">
 Learning Objectives
 
 &lt;a class="anchor" href="#learning-objectives">#&lt;/a>
 
&lt;/h2>
&lt;ul>
&lt;li>explain the relationship between an agent and its environment&lt;/li>
&lt;li>distinguish sensors, percepts, actions and actuators&lt;/li>
&lt;li>explain percept sequences and the agent function&lt;/li>
&lt;li>describe what makes an agent rational&lt;/li>
&lt;li>distinguish rationality from omniscience&lt;/li>
&lt;li>specify a task environment using &lt;strong>PEAS&lt;/strong>&lt;/li>
&lt;li>classify environments using standard AI properties&lt;/li>
&lt;li>explain why environment properties affect agent design&lt;/li>
&lt;/ul>
&lt;h2 id="big-picture">
 Big Picture
 
 &lt;a class="anchor" href="#big-picture">#&lt;/a>
 
&lt;/h2>


&lt;pre class="mermaid">flowchart TD
 E[Environment] --&amp;gt;|Percepts| S[Sensors]
 S --&amp;gt; A[Agent]
 A --&amp;gt; C[Actuators]
 C --&amp;gt;|Actions| E

 style E fill:#E1F5FE
 style S fill:#FFF9C4
 style A fill:#C8E6C9
 style C fill:#EDE7F6&lt;/pre>
&lt;blockquote class="book-hint info">
&lt;p>Think of an agent as a continuous loop: &lt;strong>observe → decide → act → observe again&lt;/strong>. An action may change the environment, so the next observation may be different.&lt;/p></description></item></channel></rss>