Skip to content
View ParshvCrafts's full-sized avatar

Highlights

  • Pro

Block or report ParshvCrafts

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.

Content in all repositories owned by your account will be closed.
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
ParshvCrafts/README.md
Parshv PatelData Scientist, Machine Learning Engineer, Agentic AI Systems Builder

LinkedInEmailPortfolioRepositories



UC Berkeley, B.A. Data Science 20294.00 GPA, Dean's List twiceBerkeley, California

About

Hi, I'm Parshv. I'm a sophomore at UC Berkeley who builds things with data.

I study Data Science at UC Berkeley, and I spent this past summer as a Software Engineer Intern at Amazon in Seattle working on a batch ML inference platform. 4.00 GPA, Dean's List every term, though the transcript is the least interesting thing here.

Most of what I actually know came from building. There are 23 finished projects behind me: agents, computer vision, search engines, ETL pipelines, dashboards. I built a grocery budget optimizer because my mom wanted one. I wrote a data ethics module for high school students because that curriculum did not exist yet.

What gets me going: the moment a messy pile of data starts answering questions. Agents that recover instead of crashing. Code a stranger can still read six months later.

What I am not: someone who ships a notebook and calls it a product. I would rather spend the extra day on the schema, the failure path, and the tests.

Away from the keyboard I volunteer and mentor, 136+ hours logged so far.

Open to Summer 2027 internships

Data Science · Data Engineering · Machine Learning · AI and Agentic Engineering

Always up for collaborating on AI, ML, Data Science, Agentic AI or Data Engineering projects. My inbox is open.


Experience

Software Engineer Intern · Amazon

Classification and Policy Platforms · Seattle · Summer 2026

Redesigned how a batch ML inference platform resolves model configuration, then migrated it live behind a fallback architecture so no customer saw the switch.

  • Merged 5 model configuration stores into 2 schemas and removed 20+ hardcoded service dependencies. Model onboarding went from weeks to hours.
  • Built a fallback path across 3 distributed service layers so the live migration could not take the platform down.
Changes mergedLines addedPackages shippedIncidents
4461,565190

Featured Projects

Six projects. Open one for the stack, the numbers, and the decision that mattered.

 Interlace · Multimodal Fashion Search Engine

Search 29,000+ ASOS products by text, image, or both at once. Fashion-tuned CLIP embeddings feed two FAISS indexes, fused with keyword search, so "like this jacket but in linen" matches the picture and the words.

StackPython · FashionCLIP · FAISS · BM25 · FastAPI · Next.js · Docker
Scale29,000+ products, two vector indexes, text / image / combined queries
SearchVector and keyword results merged by Reciprocal Rank Fusion, then reranked on parsed intent
LinksRepository · Live Demo · Video

Why it works: no single method handles real shopper queries. Vector search misses exact brand and size words; keyword search misses visual intent. Running both and merging is what made results usable rather than merely relevant.

 AtlasMind · Agentic AI Trip Planner

A paid AI travel platform where six LangGraph agents research, draft, critique and finalise an itinerary. Requests route across 10 LLM keys with health scoring, so one provider going down never reaches a paying user.

StackPython · FastAPI · LangGraph · React · PostgreSQL · Stripe
Scale6-agent state machine, routing across 10 keys, 99.9% uptime
ProductStripe Free / Pro tiers, usage tracking, webhooks, quota enforcement
LinksRepository · Live Demo · Video

Why it works: agent demos are easy, agent products are not. The engineering went into what users never see: quota enforcement that survives a replayed webhook, routing that degrades instead of failing, and a critic agent that catches a bad generation before a customer does.

 Vendor Performance Analysis · Retail Analytics at Scale

An ETL and analytics pipeline over 15.6M+ transaction records, built to answer a question the business could not previously ask: which vendors quietly tie up working capital?

StackPython · SQL · Pandas · Power BI
SpeedQuery time cut from 9 minutes to 44 seconds, roughly 12x
Finding$3.7M of unsold inventory capital held by underperforming vendors
LinksRepository

Why it works: the 12x mattered more than it sounds. At nine minutes a query, analysts asked one question a day. At forty-four seconds, they explored.

 AI Text Summarizer · Fine-Tuned FLAN-T5

Dialogue summarisation on FLAN-T5 fine-tuned over 16,000+ SAMSum conversations, using a PyTorch training loop written from scratch with mixed precision and resumable checkpoints.

StackPython · PyTorch · FLAN-T5 · FastAPI · Groq · React
QualityROUGE-1 = 43.53, sub-second inference, 35 tests passing
LinksRepository · Live Demo · Video

Why it works: writing the loop by hand instead of using a prebuilt Trainer was the point. Checkpoint resumption and profile switching break when you cannot see the loop, and they are what let the model train on free compute that can be interrupted.

 SpaceX Falcon 9 Landing Predictor

Predicts whether a Falcon 9 first stage lands successfully, then turns that into launch-cost economics. Collection, cleaning, exploration, mapping and modelling end to end.

StackPython · Pandas · scikit-learn · Folium · Plotly Dash
Result94.4% accuracy, SVM selected from 4 classifiers under GridSearchCV
ImpactQuantified a $103M cost difference per launch based on stage recovery
LinksRepository

Why it works: the modelling was the short part. The value came from reconciling an inconsistent public API against scraped launch tables, which is where the real errors lived.

 CFD Navier-Stokes Solver

A 2D fluid-dynamics solver written from first principles for UC Berkeley Physics 77, used to sweep airfoil shapes for the best lift-to-drag ratio.

StackPython · NumPy · finite-difference methods
ResultBest lift-to-drag = 1.479, NACA 5315 at 0.1 m/s
RecognitionCharlene Conrad Liebau Library Prize, Honorable Mention. The only STEM paper among lower-division finalists from 51 applicants
LinksRepository

Why it works: implementing the pressure coupling by hand rather than calling a solver library is why this one is here. It is where numerical stability stopped being a debugging problem and became a design constraint.


Tech Stack

Languages

Python, Java, TypeScript, JavaScript, HTML, CSS

Machine Learning and AI

PyTorch, TensorFlow, scikit-learn, OpenCV, Hugging Face, LangChain

Data and Analytics

Pandas, NumPy, Spark, PostgreSQL, MySQL, SQLite, Plotly, Seaborn, Matplotlib, Jupyter

Backend, Cloud and Tooling

FastAPI, Flask, React, Next.js, Node.js, Tailwind CSS, Docker, AWS, Vercel, Git, GitHub, VS Code

What I Can Actually Do

Every row names the system that proves it.

AreaLevelEvidence
Agentic AI and multi-agent systemsProduction6-agent LangGraph workflow serving paying users, failover across 10 providers
Search and retrieval (RAG)ProductionVector plus keyword retrieval over 29K products, two FAISS indexes fused by rank fusion
Fine-tuning transformersProficientFLAN-T5 on 16K dialogues, hand-written fp16 loop, ROUGE-1 43.53
Classical ML and model selectionProficientGridSearchCV across SVM, Random Forest and CNN; 94.4% and 99% on two problems
Data engineering and ETLProficient15.6M-record pipeline, 12x query-time cut, production schema work at Amazon
Deployment and MLOpsWorkingDockerised services on HuggingFace, Vercel, Render and Railway; full test suites

Achievements

RecognitionWhat it is
4.00 GPA, Dean's List ×2UC Berkeley, B.A. Data Science, every graded term
Amazon Future Engineer ScholarNational scholarship that includes the Amazon internship
Greenhouse ScholarWhole College Program, selected at a 1-in-1,780 rate
RSM US Foundation First Generation Scholar2026 cohort, 1 of 5 nationwide
Charlene Conrad Liebau Library PrizeHonorable Mention, only STEM paper among lower-division finalists from 51
ValedictorianRanked #1 of 455, AP Scholar with Distinction
 Seven more honours and fellowships
RecognitionWhat it is
MLT Ascend ScholarManagement Leadership for Tomorrow career fellowship
AI4ALL Ignite FellowApplied AI accelerator for underrepresented technologists
CAA Leadership ScholarCal Alumni Association multi-year leadership award
QuestBridge National College Match FinalistAlso a College Prep Scholar
Berkeley competitive prizesLeslie Lipson · Elizabeth Mills Crothers · Dorothy Rosenberg · Lili Fabilli and Eric Hoffer
IMO Gold MedalInternational Mathematics Olympiad, Level 1
GFWC National 1st PlaceNational youth writing competition

Certifications

CertificationIssuerIssuedCredential
AWS Certified AI PractitionerAmazon Web ServicesAug 2026view
Foundations of AI Engineering, HonorsCodePathMay 2026view
Berkeley Student Leadership AcademyUC BerkeleyApr 2026view
Berkeley ChangemakerUC BerkeleyDec 2025view
Deloitte Australia Data AnalyticsForageJul 2025view
Commonwealth Bank Data ScienceForageJul 2025view
Introduction to Data AnalyticsIBMFeb 2025verify
SQL for Data ScienceUC DavisFeb 2024verify
Python for Everybody, SpecializationUniversity of MichiganDec 2023verify

All credentials on LinkedIn


GitHub Activity

GitHub statisticsMost used languages
Contribution streaks



Contribution activity over the past year



Snake eating the contribution graph

Right Now

building:
- "Automation and personal assistant agents"
- "Computer vision projects"
- "Data science work, end to end"learning:
- "Data engineering"
- "Discrete mathematics"
- "NLP and large language models"
- "Agents and agentic coding"open_to:
- "Summer 2027 internships: Data Science, Data Engineering, ML, AI Engineering"
- "Collaborating on AI, ML, Data Science, Agentic AI and Data Engineering projects"

Let's Talk

Hiring, building something adjacent, or comparing notes on agent evaluation? I answer every message.


LinkedInEmailPortfolioRepositories



"The purpose of computing is insight, not numbers."

Richard Hamming

Popular repositories Loading

  1. EquiBirth_AI EquiBirth_AIPublic

    AI4ALL Ignite project applying machine learning to maternal health equity

    Jupyter Notebook 2

  2. ParshvCrafts ParshvCraftsPublic

    Config files for my GitHub profile.

    Python

  3. Projects ProjectsPublic

    Jupyter Notebook

  4. Student-Performance-Analysis Student-Performance-AnalysisPublic

    Education-equity ML analysis of student outcomes - R-squared 0.88, quantifying a +7.6pp test-prep effect

    Jupyter Notebook

  5. Movie-Recommendation-System Movie-Recommendation-SystemPublic

    Collaborative and content-based movie recommender system built on the MovieLens dataset

    Jupyter Notebook

  6. Text-Summarizer Text-SummarizerPublic

    Dialogue summarization service: FLAN-T5 fine-tuned on 16K+ SAMSum conversations (ROUGE-1 43.53), served via FastAPI + Groq with a React frontend

    Jupyter Notebook