Machine Learning 10 projects
Classic algorithms, training & tuning
Customer Churn
Flags telco subscribers likely to cancel; compares LogReg / RF / XGBoost + a stacking ensemble, reports ROC-AUC and the top churn drivers.
View code & docs โHouse Prices
Price regression comparing Ridge / RF / Gradient Boosting + stacking; reports Rยฒ/MAE/RMSE and the features that drive price.
View code & docs โFraud Detection
Imbalanced credit-card fraud with SMOTE oversampling + multi-algorithm stacking, tuned for recall.
View code & docs โCredit Risk
Loan-default classifier (LogReg / RF / GBM + stacking) with feature-importance explanations.
View code & docs โBreast-Cancer Diagnosis
Explainable diagnosis on UCI Wisconsin; multi-algorithm + stacking with clinician-checkable importances.
View code & docs โCustomer Segmentation
RFM features from raw transactions; KMeans vs Agglomerative vs DBSCAN scored by silhouette, labelled segments.
View code & docs โDemand Forecasting
Forecasting as supervised regression on lag + calendar features vs a seasonal-naive baseline; MAE/RMSE/MAPE.
View code & docs โStock Movement
Technical features โ chronological split (no look-ahead leakage) โ honest backtest of long/flat vs buy-and-hold.
View code & docs โMovie Recommender
SVD matrix factorization vs mean baselines on MovieLens, held-out RMSE + top-k recommendations.
View code & docs โAutoML + Optuna
Capstone: an Optuna study that tunes a gradient-boosting model, with a default-vs-tuned comparison and an optimization-history chart.
View code & docs โDeep Learning 10 projects
PyTorch: training, transfer learning, fine-tuning
CNN from Scratch
A SimpleCNN + training loop on Fashion-MNIST that classifies example images.
View code & docs โTransfer Learning
Swaps ResNet-18's head, freezes the backbone, fine-tunes on any ImageFolder dataset.
View code & docs โPneumonia X-ray
Fine-tuned ResNet-18 (normal vs pneumonia) + a from-scratch Grad-CAM overlay for explainability.
View code & docs โObject Detection
A YOLO11 detector: upload an image and get back an annotated image plus a table of detections.
View code & docs โU-Net Segmentation
A compact U-Net with skip connections, pixel-wise training loop, input-vs-mask visualisation.
View code & docs โTraffic Signs
A colour-image CNN over GTSRB 32ร32 crops, trained and evaluated in the chat UI.
View code & docs โLSTM Forecasting
An LSTM that predicts the next value from a window, then forecasts multiple steps recursively.
View code & docs โSpeech Emotion
Audio โ MFCC features โ MLP classifier (librosa, with a numpy spectral fallback so it runs offline).
View code & docs โFace Verification
A CNN that maps a face to an L2-normalised embedding, then verifies pairs by cosine similarity.
View code & docs โViT Fine-Tune
Capstone: a Vision Transformer with a swapped head, a fine-tune loop, and optional Weights & Biases sweeps.
View code & docs โNLP 10 projects
Classic NLP โ transformers โ LLM fine-tuning
SMS Spam
TF-IDF comparing Naive Bayes / LogReg / Linear SVM; paste a message, get spam/ham + confidence.
View code & docs โSentiment
TF-IDF classifier comparison that scores any review; documents the DistilBERT fine-tune path for SOTA.
View code & docs โFake News
TF-IDF NB / LogReg / SVM classifier that scores any headline.
View code & docs โNamed Entity Recognition
A rule-based extractor in the chat UI; documents the fine-tuned BERT / spaCy production path.
View code & docs โSummarization
A faithful extractive summarizer (frequency-scored sentences) + the documented BART abstractive path.
View code & docs โTopic Modeling
Compares NMF (on TF-IDF) and LDA (on counts), shows top words per topic, matches new docs to a topic.
View code & docs โMachine Translation
A chat translator: an offline word-lookup demo plus the real NLLB-200 path via Transformers.
View code & docs โQuestion Answering
A TF-IDF sentence-relevance baseline over your context + the SQuAD BERT span-extraction path.
View code & docs โLLM Fine-Tune (LoRA/QLoRA)
16 GB GPU: Alpaca-format instruction-data prep plus a complete Unsloth QLoRA training script.
View code & docs โSemantic Search
A TF-IDF rรฉsumรฉ โ job matcher + the sentence-transformer dense-embedding upgrade.
View code & docs โGenerative AI 10 projects
LLM apps, RAG, image/video, local inference, guardrails
Prompt Playground
Multi-provider chat (OpenAI / Anthropic / Ollama / offline mock) that shows which model answered + a chain-of-thought transform.
View code & docs โRAG: Chat with Docs
Chunk โ retrieve โ answer with citations over your text or PDFs.
View code & docs โGraphRAG
Entity extraction โ a networkx co-occurrence graph โ neighbourhood retrieval โ grounded answer.
View code & docs โLocal LLM Chat
Chats against a local model via Ollama or a vLLM OpenAI-compatible server, with history.
View code & docs โ1-bit LLMs (BitNet)
From-scratch ternary (absmean) quantization: it converts weights to {โ1,0,1} and reports the compression and the error.
View code & docs โImage Generation
Text-to-image: a procedural offline demo plus the real diffusers path (SD 3.5 / FLUX).
View code & docs โVideo Generation
Text-to-video: a procedural GIF offline demo plus the diffusers LTX-Video and hosted-API path.
View code & docs โDocument Intelligence / OCR
scan/PDF โ OCR โ field extraction; extraction tested offline, modern OCR engines documented.
View code & docs โStructured Extraction
A Pydantic schema validated on the way in: regex offline, PydanticAI (LLM fills the schema) in production.
View code & docs โEvals + Guardrails
LLMOps capstone: quality metrics (exact-match, faithfulness, recall) and guardrails (PII, banned content), all pulled into one report.
View code & docs โAI Agents 13 projects
Frameworks & real agent types
ReAct from Scratch
A ReAct executor with a safe calculator + lookup tool and a transparent Thought/Action/Observation trace.
View code & docs โSQL Agent
Natural language โ SQL over a real SQLite DB; LangGraph + a schema-aware LLM in production.
View code & docs โWeb / Browser Agent
Navigates a site and extracts answers with a visible trace; browser-use / Playwright on a live browser in production.
View code & docs โResearch Agent
Searches a corpus, ranks sources, writes a cited synthesis; CrewAI + a web-search tool in production.
View code & docs โMulti-Agent Content Team
A researcher โ writer โ editor pipeline that turns a topic into an article, showing each role's output.
View code & docs โConversational Multi-Agent
A Solver โ Critic dialogue that refines an answer over rounds, with the full transcript.
View code & docs โType-safe Tool Agent
Tools with Pydantic arg models + validators and a router that validates before executing.
View code & docs โA2A: Across Frameworks
An A2A message schema + agent cards; two cross-framework agents collaborate on one task.
View code & docs โHealthcare Agent
Guideline-RAG wrapped in safety rails: emergency escalation, refusal to diagnose/prescribe, disclaimer on every answer.
View code & docs โFinance Agent
A finance analyst over a financials table (SQLite) with a no-advice guardrail; RAG over 10-Ks in production.
View code & docs โVoice Agent
An STT โ LLM โ TTS pipeline; the text orchestration is tested offline, the audio edges are documented.
View code & docs โGuardrails / Safety
An input rail (jailbreak / disallowed-request blocking) + an output rail (PII masking) wrapping a model.
View code & docs โAgent Harness
Capstone: routes a task to the right skill, retries, and returns a full trace plus metrics; Claude Agent SDK or LangGraph with a tracer in production.
View code & docs โCapstone Products 10 projects
End-to-end, one per domain ยท full build briefs
Clinical Decision Support & Triage
Guideline-grounded triage and Q&A with hard safety rails, an audit log, and a clinician review queue, in a private cloud.
View full brief โBanking Support & Fraud Assistant
Policy Q&A plus a SQL agent over transactions, dispute intake, fraud flagging, and a no-advice guardrail.
View full brief โAdaptive Tutor & Course Builder
A Socratic tutor that hints without leaking answers, auto-builds quizzes and lesson plans, and grades with rubrics.
View full brief โRecruitment & People-Ops Copilot
Bias-aware resume-to-role matching, interview kits, an employee policy bot, and a recruiter dashboard.
View full brief โProperty Discovery & Deal Analyzer
Natural-language and geo property search, vision tagging, contract extraction, and a deal-analysis agent.
View full brief โEnterprise Knowledge Search
Hybrid keyword and vector search across Drive, Confluence, and Slack, with permission-aware GraphRAG.
View full brief โNo-Code AI Agent Builder
A no-code visual agent builder on Copilot Studio and Azure AI Foundry, with governance and built-in evals.
View full brief โAzure Document & Call Intelligence
Built only on Azure: Document Intelligence, Speech, OpenAI, and AI Search, with Content Safety guardrails.
View full brief โInsurance Policy & Claims Assistant
Policy Q&A with clause citations, OCR claims intake, a coverage rules engine, and an adjuster dashboard.
View full brief โInvestment Research & Portfolio
RAG over filings plus a SQL agent over holdings, risk analysis, and a strict no-advice guardrail.
View full brief โ