42AI Lab · salary inference showcase
ML salary prediction
See what the pipeline thinks you're worth. Answer a short developer survey, hit Predict, and watch an async ML job return a salary estimate — the exact flow powering our deployment stack.
Pipeline
How it works
Weight your Wage is a showcase: the model is deliberately simple so the pipeline — form contract, async inference, polling, and result rendering — can take center stage.
Fill a compact form built around the exact features the model was trained on — no full Stack Overflow survey reproduction.
Zod validation · typed payload
The form payload is POSTed to a FastAPI backend that queues an inference job and returns a job_id immediately.
POST /jobs/predict
The UI polls the job status endpoint and surfaces the predicted salary the moment the worker marks it complete.
GET /jobs/{job_id}
Assistant · open