A curated collection of ** real-world AI/ML interview questions** with detailed answers, covering LLMs, Neural Networks, Computer Vision, RAG, and more.
| Category | Topics |
|---|---|
| LLM | Training, Inference, Quantization, Attention, Finetuning, LORA, MOE |
| Neural Network | Optimizers, Dropout, Softmax, Weight Initialization |
| Computer Vision | CNNs, Object Detection, Segmentation, NMS |
| RAG | Retrieval, Vector DBs, Hallucination Debugging |
| Agents | Memory, Tool Use, Termination |
| Traditional ML | Feature Engineering, Class Imbalance, Loss Functions |
| System Design | Scaling, Retraining, Recommendation Systems |
| VLMs | CLIP, Vision Tokens, Multimodal Training |
-
Create a
.mdfile in the appropriate category folder:echo "# Your Question Title\n\nYour answer..." > "LLM/Training/Your-Topic.md"
-
Push to GitHub — the catalog updates automatically!
-
For new categories, just create a new folder with
.mdfiles.
cd website
bundle install
python ../scripts/generate_catalog.py
bundle exec jekyll serve# Question Title
Brief introduction or context.
## Key Concept
Explanation with examples...
### Code Example
\`\`\`python
def example():
return "Hello ML!"
\`\`\`Feel free to use for learning and interview prep!
⭐ Star this repo if it helps with your ML interviews!