Education
MS Data Science (Statistics) — Rutgers University
Hello, I'm
Welcome to my work. Let's build something exceptional together.
Hi, I’m Siritha. Hi, I'm Siritha. I'm a Research Assistant at Rutgers and a highly versatile Data and ML/NLP Engineer. I focus on building practical, high-impact intelligent systems with clean engineering and clear storytelling, allowing me to successfully execute projects from concept to deployment.
MS Data Science (Statistics) — Rutgers University
Data Analyst, ML projects, MLOps basics
New Jersey, USA
Code-mixed NLP, RAG, agents
Feature engineering + RF/XGBoost with realistic metrics and SHAP explainability.
Source Code →
End-to-end data engineering pipeline integrating customer demographics, transactions, and marketing data to create a unified 360° view for actionable insights.
Source Code →
Real-time fraud detection pipeline using PostgreSQL, FastAPI, and ML models to flag suspicious transactions and enhance financial security.
Source Code →
ResearchGate Preprint, 2025
Siritha Chidipothu, et al.
View Full TextFeel free to reach out to me for any questions or opportunities!
# Python ML Code Sample
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import load_iris
from sklearn.metrics import accuracy_score
X, y = load_iris(return_X_y=True)
Xtr, Xte, ytr, yte = train_test_split(X, y, test_size=0.25, random_state=42)
m = RandomForestClassifier(n_estimators=200, random_state=42).fit(Xtr, ytr)
print("Accuracy:", accuracy_score(yte, m.predict(Xte)))