Skip to content
View ms1104n-max's full-sized avatar

Block or report ms1104n-max

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ms1104n-max/README.md

Sai Nikhil Mattapalli

AI / ML Engineer · Financial ML · RAG · Generative AI

Shipping ML systems at the edge of finance, risk, and retrieval.

📍 New Jersey, USA  ·  🎯 Open to senior AI/ML roles

🌐 Portfolio  ·  📫 Email  ·  💼 LinkedIn


📊 By the numbers

5+ yrs 35% 25% 30% 40%
Production AI/ML RAG retrieval
accuracy
Risk-model
accuracy
Faster model
training
Faster data
queries

👋 About

I'm an AI/ML engineer with 5+ years of production experience building ML and Generative AI systems. Currently at Goldman Sachs, building financial research and risk-intelligence platforms — RAG pipelines, agentic LLM workflows, and models for risk prediction, anomaly detection, and fraud.

Before Goldman Sachs, I spent two and a half years at Cognizant as a Data Scientist — building real-time market models, reinforcement-learning execution strategies, anomaly-detection frameworks, and NLP sentiment pipelines over large-scale financial data. M.S. in Computer Science from SUNY Albany.

My work sits where modeling meets engineering: latency budgets, evaluation that survives production, and pipelines that don't fall over when the data changes underneath them. Offline accuracy is the start of the job — shipping is the rest.


🗓️ Career timeline

gantt
    title       Industry experience
    dateFormat  YYYY-MM
    axisFormat  %Y
    section Roles
    Data Scientist  ·  Cognizant                          :done,    c1, 2020-02, 2022-08
    AI / ML Engineer  ·  Goldman Sachs  (current)          :active,  m1, 2023-08, 2026-06
Loading

🧭 Featured architecture  —  multi-agentic-rag

A multi-agent retrieval-augmented system where specialized agents handle routing, retrieval, query reformulation, fact-checking, and safety. Built with LangChain + Streamlit + Groq, hybrid file/URL knowledge sources, dynamic routing and self-correction.

flowchart LR
    Q([User query]) --> R{{Router agent}}
    R -- "files / URLs" --> Ret[Retriever]
    R -- "fresh facts" --> Web[Web search agent]
    Ret --> Rf[Query reformulator]
    Web --> Rf
    Rf --> Fc[Fact-checker agent]
    Fc --> Sc[Safety-checker agent]
    Sc --> Out([Grounded response])

    classDef agent fill:#1f6feb22,stroke:#1f6feb,stroke-width:1.5px,color:#1f6feb
    classDef io fill:#d4ff3a22,stroke:#8ba526,color:#3d3a35
    class R,Ret,Web,Rf,Fc,Sc agent
    class Q,Out io
Loading

github.com/ms1104n-max/multi-agentic-rag


🚀 Currently building

Repo What it actually does
multi-agentic-rag Multi-agent RAG with router · retriever · reformulator · web-search · fact-checker · safety agents (Streamlit + LangChain + Groq)
rag-chatbot Production-aware RAG chatbot · CI/CD · M1 / NVIDIA llama.cpp · explicit cost / latency / hallucination tradeoffs
rag-from-scratch RAG without framework abstractions — embeddings, local vector DB, retrieval, re-ranking, query rewriting from first principles
langchain-rag-document-understanding LangChain + FAISS + SentenceTransformer pipeline for grounded document Q&A · Jupyter walkthrough
mlops-app IaC reference stack — Terraform on GCP · BigQuery · GH Actions · Docker · Prefect · dbt · MLflow · FastAPI

📖 Studying / extending


💼 Selected work impact

  • 35% higher retrieval accuracy  ·  production RAG pipelines for financial research & knowledge discovery  —  Goldman Sachs
  • 25% accuracy lift  ·  risk-prediction, anomaly-detection, and fraud models  —  Goldman Sachs
  • 30% faster  ·  model training and large-scale data processing with JAX  —  Goldman Sachs
  • 40% faster  ·  query response on a 100 TB+ Azure Synapse warehouse  —  Cognizant
  • 30% fewer false positives  ·  real-time anomaly detection (Kafka + PySpark), SEC / FINRA aligned  —  Cognizant

Full case studies & architecture detail at  sainikhil.com →


🛠️ Stack

mindmap
  root((Stack))
    AI and ML
      Python
      Scikit-learn
      TensorFlow
      Keras
      JAX
      Hugging Face
    Generative AI
      LangChain
      OpenAI
      Azure OpenAI
      RAG
      Embeddings
      LoRA PEFT
    Data
      PySpark
      Pandas
      NumPy
      Kafka
      Snowflake
      Postgres
      MongoDB
    Vector DBs
      FAISS
      Pinecone
      ChromaDB
    Cloud
      AWS
      AWS Lambda
      Vertex AI
      Azure Synapse
    MLOps
      Docker
      Kubernetes
      MLflow
      Jenkins
      FastAPI
      CICD
Loading

🎯 Where my time goes

pie showData
    title    Focus distribution
    "Generative AI · RAG · Agents"   : 35
    "Financial ML"                   : 30
    "MLOps & Backend"                : 20
    "Data Engineering · Analytics"   : 15
Loading

🌱 Currently

  • 📍 Open to senior AI/ML and Generative-AI roles
  • 🛠️ Shipping financial research & risk-intelligence systems at Goldman Sachs
  • 📫 Reach me at  smatt11041509@gmail.com

Production-first ML — offline accuracy is the start of the job; shipping is the rest.

🌐  sainikhil.com  →

Popular repositories Loading

  1. contribution-history contribution-history Public

    Generated GitHub contribution history

  2. mlops-app mlops-app Public

    End-to-end MLOps reference stack — Terraform on GCP, BigQuery, GitHub Actions, Docker, Prefect, dbt, MLflow, FastAPI.

    HCL

  3. ai_soc ai_soc Public

    Hands-on study of Srinivas et al. AI-Augmented SOC research (MDPI Informatics 2025). Original implementation by Abdul Bari — attribution preserved per Apache 2.0.

    Python

  4. multi-agentic-rag multi-agentic-rag Public

    Multi-agent RAG with router, retriever, query reformulator, web-search, fact-checker, and safety agents — Streamlit + LangChain + Groq.

    Python

  5. langchain-rag-retrieval-augmented-generation-for-document-understanding langchain-rag-retrieval-augmented-generation-for-document-understanding Public

    LangChain + FAISS + SentenceTransformer pipeline for grounded document Q&A — step-by-step Jupyter walkthrough on real PDFs.

    Jupyter Notebook

  6. rag-chatbot rag-chatbot Public

    Production-aware RAG chatbot with CI/CD, llama.cpp on M1 / NVIDIA, and explicit cost / latency / hallucination tradeoffs.

    Python