</>
Skip to content
AI lessons (6/37)

AI — Types

By Capability

TypeDescriptionStatus
Narrow AISpecific tasksCurrent
General AIHuman-levelTheoretical
Super AIBeyond humanTheoretical

By Functionality

TypeDescription
Reactive MachinesNo memory
Limited MemoryShort-term memory
Theory of MindUnderstands emotions
Self-AwareConscious

Current AI

# Narrow AI examples
import tensorflow as tf

# Image classification
model = tf.keras.applications.MobileNetV2()
# Natural language processing
from transformers import pipeline
nlp = pipeline("sentiment-analysis")

Mini Practice

  1. Understand AI types
  2. Learn about Narrow AI
  3. Explore General AI concepts
  4. Study Super AI theories

Up Next

Continue with Agents — AI agents.

Related Topics

Frequently Asked Questions about Types

What is Types in AI?

Types is a fundamental concept in AI. This lesson explains it step by step with clear examples, making it easy for beginners to understand.

How do I learn Types?

Start by reading the explanation above, then try the code examples. Practice by modifying the examples and experimenting with different values. Hands-on practice is the best way to learn Types.

Why is Types important in AI?

Types is essential for AI development. Understanding this concept will help you write better code and solve real-world problems more effectively.