AI Complete Notes Fixed
AI Complete Notes Fixed
## AI for Everyone
### Evolution of AI
- **1950**: Alan Turing proposes the Turing Test for machine intelligence.
- **1956**: AI officially recognized at Dartmouth Conference.
- **1980s-90s**: Growth of machine learning.
- **2000s-Present**: AI integrated into daily life (Siri, Alexa, ChatGPT).
### Types of AI
1. **Narrow AI**: Performs specific tasks (e.g., facial recognition, recommendation systems).
2. **General AI**: Can think and reason like humans (not yet achieved).
3. **Super AI**: Hypothetical AI that surpasses human intelligence.
### Domains of AI
- **Machine Learning (ML)**: AI learns from data (Netflix recommendations).
- **Natural Language Processing (NLP)**: AI understands language (Google Translate,
chatbots).
- **Computer Vision**: AI interprets images/videos (Face ID, medical imaging).
# Train model
model = LinearRegression()
model.fit(X, y)
model = LinearRegression()
model.fit(X, y)