Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 41 additions & 1 deletion Domains/AI-ML/Roadmap.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
# AI-ML Roadmap
Beginner → Intermediate → Advanced
Beginner → Intermediate → Advanced

This roadmap is a suggested plan for learning Artificial Intelligence and Machine Learning skills, including specific topics and areas of interest that can have separate files added to expand on in this folder.


## Beginner: Foundation Skills

### Goal
Learn the basics of machine learning and AI, building confidence in the use of Python coding skills, basic data analysis, and visualization skills

### Topics
- Python Fundamentals: focus on basic Python syntax, variables, loops, functions, NumPy
- Pandas Library: importing and cleaning data
- Visualization Libraries: Matplotlib and Seaborn
- Machine Learning: basics of supervised and unsupervised learning, model basics
- Model Training: test/train split, linear regression, logistic regression
- Evaluation: accuracy, precision, recall, F1, confusion matrix

## Intermediate: Applied Machine Learning

### Goal
Move beyond basic skills into model performance and testing, and engineering skills.

### Topics
- Feature Engineering: scaling, domain knowledge
- Pipelines and Cross-Validation: `Pipeline`, `GridSearchCV`
- Model Comparison: Random Forest, SVM, KNN
- Data Leakage and Validation: prevent overfitting and leakage traps
- Deep Learning: TensorFlow, PyTorch
- Natural Language Processing (NLP)

## Advanced: Production and Responsible AI

### Goal
Building competency with deploying, monitoring and scaling machine learning systems, with an understanding of ethics.

### Topics
- Model Deployment
- MLOps Concepts: CI/CD, versioning
- Bias: identify and mitigate bias in models
- Privacy and Governance: secure data handling
Loading