<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>AI Foundation on Arshad Siddiqui</title><link>https://arshadhs.github.io/docs/ai/005-foundation/</link><description>Recent content in AI Foundation on Arshad Siddiqui</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 03 Jan 2026 12:00:00 +0100</lastBuildDate><atom:link href="https://arshadhs.github.io/docs/ai/005-foundation/index.xml" rel="self" type="application/rss+xml"/><item><title>AI Stages: ANI, AGI, ASI</title><link>https://arshadhs.github.io/docs/ai/005-foundation/ai-stages/</link><pubDate>Thu, 04 Jul 2024 10:55:52 +0100</pubDate><guid>https://arshadhs.github.io/docs/ai/005-foundation/ai-stages/</guid><description>&lt;h1 id="ai-development-stages-ani--agi--asi">
 AI Development Stages: ANI → AGI → ASI
 
 &lt;a class="anchor" href="#ai-development-stages-ani--agi--asi">#&lt;/a>
 
&lt;/h1>
&lt;p>Artificial Intelligence is often described in &lt;strong>three stages&lt;/strong>, based on capability and scope:&lt;/p>
&lt;ul>
&lt;li>&lt;strong>ANI:&lt;/strong> Task-specific intelligence (today’s AI)&lt;/li>
&lt;li>&lt;strong>AGI:&lt;/strong> Human-level general intelligence (future goal)&lt;/li>
&lt;li>&lt;strong>ASI:&lt;/strong> Beyond human intelligence (theoretical)&lt;/li>
&lt;/ul>
&lt;hr>
&lt;p>&lt;img src="https://arshadhs.github.io/images/ai/ai_stages.png" alt="AI Stages" />&lt;/p>
&lt;hr>
&lt;h2 id="ani--artificial-narrow-intelligence">
 ANI — Artificial Narrow Intelligence
 
 &lt;a class="anchor" href="#ani--artificial-narrow-intelligence">#&lt;/a>
 
&lt;/h2>
&lt;ul>
&lt;li>also called &lt;strong>Weak AI&lt;/strong>&lt;/li>
&lt;li>designed to perform &lt;strong>one specific task&lt;/strong>&lt;/li>
&lt;li>Operates within a &lt;strong>predefined environment&lt;/strong>&lt;/li>
&lt;li>Cannot generalise beyond its training&lt;/li>
&lt;li>&lt;strong>Most AI systems today are ANI&lt;/strong>&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>examples&lt;/strong>&lt;/p></description></item><item><title>AI Stack</title><link>https://arshadhs.github.io/docs/ai/005-foundation/ai-stack/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://arshadhs.github.io/docs/ai/005-foundation/ai-stack/</guid><description>&lt;h1 id="ai-stack">
 AI Stack
 
 &lt;a class="anchor" href="#ai-stack">#&lt;/a>
 
&lt;/h1>
&lt;p>The &lt;strong>AI Stack&lt;/strong> describes the &lt;strong>layers required to build an end-to-end AI system&lt;/strong>, from infrastructure at the bottom to user-facing applications at the top.&lt;/p>
&lt;p>Different organisations represent the AI stack differently; this is a simplified conceptual view for learning.&lt;/p>
&lt;p>Each layer depends on the one below it.&lt;/p>
&lt;hr>


&lt;script src="https://arshadhs.github.io/mermaid.min.js">&lt;/script>

 &lt;script>mermaid.initialize({
 "flowchart": {
 "useMaxWidth":true
 },
 "theme": "default"
}
)&lt;/script>




&lt;pre class="mermaid">
graph TB

 subgraph APP[&amp;#34;Applications&amp;#34;]
 A[User Interfaces &amp;amp; Integrations]
 end

 subgraph ORCH[&amp;#34;Orchestration&amp;#34;]
 O[Workflows • Agents • Control Logic]
 end

 subgraph DATA[&amp;#34;Data&amp;#34;]
 D[Data Sources • Pipelines • Vector DBs]
 end

 subgraph MODEL[&amp;#34;Models&amp;#34;]
 M[ML • DL • Foundation Models • LLMs]
 end

 subgraph INFRA[&amp;#34;Infrastructure&amp;#34;]
 I[Cloud • On-prem • GPUs • Storage]
 end

 %% Styling
 style APP fill:#FFCCBC
 style ORCH fill:#90CAF9
 style DATA fill:#BBDEFB
 style MODEL fill:#C8E6C9
 style INFRA fill:#E1F5FE

 style A fill:#FFE0B2
 style O fill:#B3E5FC
 style D fill:#E3F2FD
 style M fill:#DCEDC8
 style I fill:#E1F5FE
&lt;/pre>

&lt;hr>
&lt;h2 id="1-infrastructure">
 1. Infrastructure
 
 &lt;a class="anchor" href="#1-infrastructure">#&lt;/a>
 
&lt;/h2>
&lt;p>The foundation that provides &lt;strong>compute and storage&lt;/strong>.&lt;/p></description></item><item><title>AI Pipeline</title><link>https://arshadhs.github.io/docs/ai/005-foundation/ai-pipeline/</link><pubDate>Thu, 04 Jul 2024 10:55:52 +0100</pubDate><guid>https://arshadhs.github.io/docs/ai/005-foundation/ai-pipeline/</guid><description>&lt;h1 id="ai-pipeline">
 AI Pipeline
 
 &lt;a class="anchor" href="#ai-pipeline">#&lt;/a>
 
&lt;/h1>
&lt;p>The AI pipeline is a continuous process where data is collected, prepared, used to train models, evaluated for performance, and continuously improved after deployment.&lt;/p>
&lt;div class="book-steps ">
&lt;ol>
&lt;li>
&lt;h2 id="collect-data">
 Collect Data
 
 &lt;a class="anchor" href="#collect-data">#&lt;/a>
 
&lt;/h2>
&lt;/li>
&lt;li>
&lt;h2 id="prepare-data">
 Prepare data
 
 &lt;a class="anchor" href="#prepare-data">#&lt;/a>
 
&lt;/h2>
&lt;/li>
&lt;li>
&lt;h2 id="train-model">
 Train Model
 
 &lt;a class="anchor" href="#train-model">#&lt;/a>
 
&lt;/h2>
&lt;ul>
&lt;li>Iterate until model is good enough&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>
&lt;h2 id="deploy-model">
 Deploy Model
 
 &lt;a class="anchor" href="#deploy-model">#&lt;/a>
 
&lt;/h2>
&lt;ul>
&lt;li>Get data back&lt;/li>
&lt;li>Maintain &amp;amp; update model&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ol>
&lt;/div>


&lt;script src="https://arshadhs.github.io/mermaid.min.js">&lt;/script>

 &lt;script>mermaid.initialize({
 "flowchart": {
 "useMaxWidth":true
 },
 "theme": "default"
}
)&lt;/script>




&lt;pre class="mermaid">
timeline
 title AI Pipeline
 Collect Data : Data Ingestion
 : Data Understanding
 Prepare Data : Cleaning
 : Feature Engineering
 : Sampling
 Train Model : Model Training
 : Validation &amp;amp; Metrics
 Deploy Model : Deployment
 : Monitoring &amp;amp; Retraining
&lt;/pre>

&lt;hr>
&lt;p>&lt;a href="https://arshadhs.github.io/">Home&lt;/a> | &lt;a href="https://arshadhs.github.io/docs/ai/005-foundation/">
 AI Foundation
&lt;/a>&lt;/p></description></item><item><title>AI Learning Resources</title><link>https://arshadhs.github.io/docs/ai/005-foundation/ai-notes/</link><pubDate>Sat, 03 Jan 2026 12:00:00 +0100</pubDate><guid>https://arshadhs.github.io/docs/ai/005-foundation/ai-notes/</guid><description>&lt;h1 id="ai-learning-resources">
 AI Learning Resources
 
 &lt;a class="anchor" href="#ai-learning-resources">#&lt;/a>
 
&lt;/h1>
&lt;p>A curated list of &lt;strong>high-quality online courses&lt;/strong> to learn Artificial Intelligence, Machine Learning, and Deep Learning from reputable universities and organisations.&lt;/p>
&lt;hr>
&lt;h2 id="recommended-books--references">
 Recommended Books &amp;amp; References
 
 &lt;a class="anchor" href="#recommended-books--references">#&lt;/a>
 
&lt;/h2>
&lt;hr>
&lt;h3 id="deep-neural-networks-dnn">
 Deep Neural Networks (DNN)
 
 &lt;a class="anchor" href="#deep-neural-networks-dnn">#&lt;/a>
 
&lt;/h3>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Deep Learning&lt;/strong>. MIT Press.&lt;br>
Goodfellow, I., Bengio, Y., &amp;amp; Courville, A. (2016). (Vol. 1, No. 2).&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Introduction to Deep Learning&lt;/strong>. MIT Press.&lt;br>
Eugene, C. (2019).&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Deep Learning with Python&lt;/strong>. Simon &amp;amp; Schuster.&lt;br>
Chollet, F. (2021).&lt;/p></description></item></channel></rss>