Skip to content
Learn Netverks

Lesson

Step 6/36 17% through track

types-of-ai

Types of AI systems

Last reviewed Jun 1, 2026 Content v20260601
Track mode
none
Means
Read / quiz
Reading
~2 min
Level
beginner

This lesson

This lesson teaches Types of AI systems: artificial intelligence concepts, limitations, and responsible use in modern software and data products.

Teams apply Types of AI systems in every serious AI project—skipping it leaves blind spots in analysis and reviews.

You will apply Types of AI systems in contexts like: Product planning, policy, engineering leadership, and responsible rollout discussions.

Study explanations, case studies, and MCQs—this topic is read/quiz focused without a code runner.

When you can explain the previous lesson's ideas in your own words.

AI systems are categorized by capability (reactive vs learning), modality (text, vision, speech), and deployment (batch, real-time, on-device). Taxonomy helps you pick the right tool and set expectations.

Capability spectrum

  • Reactive — chess engines evaluating positions; no memory of past games unless programmed
  • Learning — models updated from new data (recommendations, fraud scores)
  • Interactive agents — chatbots combining retrieval, tools, and policies

By modality

ModalityExample tasks
TabularChurn prediction, credit risk
Text (NLP)Search, sentiment, summarization
VisionFace detection, defect inspection
SpeechTranscription, voice commands
MultimodalImage + caption, document QA

Deployment shapes

# Deployment modes (conceptual labels)
modes = {
    "batch": "nightly scoring job",
    "online": "API per user request",
    "edge": "on phone or camera",
}
print(modes["online"])

Practice: Optional pseudocode only—run locally in Jupyter if helpful. No model training required for this literacy track.

Latency, privacy, and update frequency drive batch vs online vs edge choices.

Important interview questions and answers

  1. Q: Tabular vs NLP AI?
    A: Same ML ideas—features differ (columns vs tokens/embeddings).
  2. Q: Edge AI trade-off?
    A: Lower latency and privacy; harder to update models centrally.

Self-check

  1. Name three modalities and one task each.
  2. What is reactive vs learning AI?

Tip: Modality (text vs vision) drives tooling more than the word "AI" on a slide.

Interview prep

Reactive vs learning?
Reactive evaluates current state; learning systems update from new data.
Edge deployment trade-off?
Lower latency and privacy; harder centralized updates.

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • What part of this lesson needs a second read?
  • What would you try differently in a real project?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump