AI Model Compendium
COMPLETE AI MODEL REFERENCE — Full COMPLETE AI MODEL REFERENCE Concise descriptions, difficulty level, typical uses and example projects for major AI, ML and deep learning models (comprehensive 2025‑level list). Jump to: Classical ML Neural Networks Transformers & LLMs Graph & Relational Reinforcement Learning Generative & Diffusion Hybrid & Agentic Tools Classical Machine Learning Models Model Level Description Common Uses / Example Projects Linear Regression Beginner Predict continuous targets via linear combination of features; teaches OLS and gradients. House price prediction; sales/time-series forecasting; energy consumption modeling; baseline regression experiments; feature selection studies. Logistic Regression Beginner Binary classification using sigmoid; outputs probabilities and interpretable coefficients. Spam detection; medical screening; churn prediction; credit default classification; simple NLP classification with bag‑of‑words. Decision Tree Beginner Hierarchical splits on features producing human‑readable rules; easy to visualize. Credit scoring rules; diagnostic flowcharts; interpretable classification demos; feature importance visualizer; teaching decision logic. Random Forest Intermediate Ensemble of randomized trees; reduces variance and overfitting via averaging. Tabular baseline for industry problems; feature importance reports; anomaly detection; ecology / bioinformatics classification; model stacking component. Gradient Boosting (XGBoost / LightGBM / CatBoost) Intermediate Sequentially built trees that focus on correcting prior errors; state‑of‑the‑art for tabular tasks. Kaggle‑style tabular pipelines; credit […]