dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse


Our Discord Notification Server invitation link is https://discord.gg/jB2qmRrxyD

Author Topic: The basic "Learning AI" collection  (Read 26 times)

Online Chip (OP)

  • Server Admin
  • Moderator
  • Hero Member
  • ***
  • Administrator
  • *****
  • Join Date: Dec 2014
  • Location: Australia
  • Posts: 7150
  • Reputation Power: 0
  • Chip has hidden their reputation power
  • Gender: Male
  • Last Login:Today at 08:31:41 AM
  • Deeply Confused Learner
  • Profession: IT Engineer now retired
The basic "Learning AI" collection
« on: Yesterday at 04:14:33 PM »
This should get you up to speed, in this order:

0. The First AI - Samuel’s Checkers ML System
https://forum.drugs-and-users.org/index.php?topic=7338

Historical grounding.
Shows the origins of machine learning and self-improving systems.

1.  Pretraining modern AI / LLMs
https://forum.drugs-and-users.org/index.php?topic=7365

There is a conceptual ancestry to 0.:

Samuel → early machine learning idea: “systems can improve from data instead of rules”

Later: reinforcement learning (temporal difference learning, policy/value methods)

Much later: deep learning + backprop + Transformers

Then: RLHF (reinforcement learning from human feedback) added after pretraining

If anything, Samuel’s system is closer to modern reinforcement learning agents, not language model pretraining.

2. Basic components of AI are and how the data/query flows through to the reply
https://forum.drugs-and-users.org/index.php?topic=7347

High-level architectural overview before deep diving.
Stacks and "subsystems".

3. How Neural Networks Work
https://forum.drugs-and-users.org/index.php?topic=7343

Core foundation.
Everything modern comes from this.

4. The AI Tokenisation Pipeline
https://forum.drugs-and-users.org/index.php?topic=7350

Now the reader understands WHY text must become vectors and embeddings.

5. Transformers
https://forum.drugs-and-users.org/index.php?topic=7344

The real breakthrough architecture behind modern LLMs.

6. LLMs Explained -- A light introduction to LLMs, chatbots, pretraining, and transformers
https://forum.drugs-and-users.org/index.php?topic=7342

Applies the transformer concept to actual LLM systems and chatbot behaviour.

7. RAG - Retrieval Augmented Generation
https://forum.drugs-and-users.org/index.php?topic=7348

Advanced modern extension layer.
Shows how models interface with external knowledge.



Those were the basics and once you roughly understand them then continue on with the following topics:



8. Embeddings and Vector Spaces
https://forum.drugs-and-users.org/index.php?topic=7351

Right now embeddings are probably buried inside tokenisation or neural networks, but embeddings are absolutely central to modern AI.

Topics:
  • What embeddings actually are
  • High-dimensional vector spaces
  • Semantic proximity
  • Why "cat" and "dog" cluster together
  • Cosine similarity
  • Latent space
  • Why RAG works
  • Why hallucinations happen

This becomes the bridge between:
Code: [Select]
Token IDs → Meaning Space

9. Attention Mechanisms and Self-Attention
https://forum.drugs-and-users.org/index.php?topic=7352

Transformers really deserve to be split and Attention is the actual revolutionary mechanism.

Topics:
  • Query / Key / Value vectors
  • Attention weighting
  • Context windows
  • Token relationships
  • Parallel processing vs recurrence
  • Why transformers replaced RNNs/LSTMs

Without attention, transformers look like magic.

10. Training vs Inference
https://forum.drugs-and-users.org/index.php?topic=7353

This is one of the most misunderstood things in AI discussions.

Most people think ChatGPT is "learning while talking."

It usually is not.

Topics:
  • Pretraining
  • Gradient descent
  • Backpropagation
  • Weights
  • Inference-only operation
  • Fine tuning
  • RLHF
  • Why models are static snapshots

This clears up enormous confusion.

11. Context Windows and Memory
https://forum.drugs-and-users.org/index.php?topic=7354

Critical for chatbot understanding.

Topics:
  • What context windows are
  • Token limits
  • Sliding attention windows
  • Conversation truncation
  • Why models "forget"
  • Persistent memory systems
  • RAG vs memory

This directly explains chatbot behaviour.

12. Hallucinations and Failure Modes
https://forum.drugs-and-users.org/index.php?topic=7355

Very important as AIs won't say "I don't know".

Topics:
  • Probabilistic generation
  • Why confidence ≠ correctness
  • Distribution gaps
  • Mode collapse
  • Confabulation
  • Context poisoning
  • Prompt injection

Most people fundamentally misunderstand hallucinations.

13. Multi-Modal AI
https://forum.drugs-and-users.org/index.php?topic=7356

Modern systems are no longer just text.

Topics:
  • Vision transformers
  • Image tokenisation
  • Audio embeddings
  • Cross-modal embeddings
  • Unified latent spaces
  • Image generation diffusion models

This connects LLMs to image/video/audio systems.

14. Agents and Tool Use
https://forum.drugs-and-users.org/index.php?topic=7357

Modern frontier AI architecture.

Topics:
  • Tool calling
  • External APIs
  • Planning loops
  • Chain-of-thought orchestration
  • Autonomous agents
  • Memory stores
  • Execution environments

This is where systems are heading now.

15. Scaling Laws
https://forum.drugs-and-users.org/index.php?topic=7358

Very important historically.

Topics:
  • Why bigger models suddenly worked
  • Emergent behaviour
  • Parameter scaling
  • Data scaling
  • Compute scaling
  • Why GPT-3 changed everything

16. Quantisation and Model Compression
https://forum.drugs-and-users.org/index.php?topic=7360

The practical consequence of Scaling Laws.

Topics:
  • What model weights actually are at the bit level
  • FP32 vs FP16 vs INT8 vs INT4
  • How precision reduction affects output quality
  • GGUF and GGML formats
  • llama.cpp and local inference
  • Pruning and knowledge distillation
  • Why a 7B quantised model can run on a laptop

Scaling Laws explains why models got enormous.
This explains how ordinary hardware runs them anyway.
Directly relevant to anyone self-hosting or running local models.

This explains why AI progress looked sudden.

17. Diffusion Models and What They Are For
https://forum.drugs-and-users.org/index.php?topic=7359

When discussing image generation.

Topics:
  • Noise schedules
  • Denoising
  • Latent diffusion
  • Classifier guidance
  • Why Stable Diffusion works

Completely different architecture family from transformers.


18. The  Future of AI — What Is Actually Coming [/b]
https://forum.drugs-and-users.org/index.php?topic=7361

By Claude, a prediction only ...

That’s plenty for now !
« Last Edit: Today at 08:31:41 AM by Chip »
friendly
0
funny
0
informative
0
agree
0
disagree
0
like
0
dislike
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
Our Discord Server invitation link is https://discord.gg/jB2qmRrxyD

Tags:
 

Related Topics

  Subject / Started by Replies Last post
0 Replies
27096 Views
Last post October 18, 2015, 10:38:20 AM
by skramamme
8 Replies
45668 Views
Last post December 02, 2015, 04:48:55 AM
by DeadCat
11 Replies
58033 Views
Last post May 14, 2016, 08:34:40 PM
by Taytoechip
2 Replies
32975 Views
Last post February 17, 2018, 05:18:19 PM
by Chip
1 Replies
25012 Views
Last post June 20, 2018, 07:06:05 PM
by Chip
0 Replies
11710 Views
Last post February 20, 2025, 10:46:56 AM
by smfadmin
0 Replies
11258 Views
Last post March 02, 2025, 02:49:31 AM
by smfadmin
0 Replies
20348 Views
Last post June 17, 2025, 01:19:32 PM
by smfadmin
1 Replies
44 Views
Last post Today at 08:06:33 AM
by smfadmin
0 Replies
12 Views
Last post Today at 02:42:17 AM
by Chip


dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse





TERMS AND CONDITIONS

In no event will d&u or any person involved in creating, producing, or distributing site information be liable for any direct, indirect, incidental, punitive, special or consequential damages arising out of the use of or inability to use d&u. You agree to indemnify and hold harmless d&u, its domain founders, sponsors, maintainers, server administrators, volunteers and contributors from and against all liability, claims, damages, costs and expenses, including legal fees, that arise directly or indirectly from the use of any part of the d&u site.


TO USE THIS WEBSITE YOU MUST AGREE TO THE TERMS AND CONDITIONS ABOVE


Founded December 2014
SimplePortal 2.3.6 © 2008-2014, SimplePortal