Workflow
LoRA adapters, supervised fine-tuning, knowledge distillation, RLHF, and quantization, from raw data to deployment-ready weights.
Fine-tuning and adaptation work is repetitive: preparing data, picking hyperparameters, running training, and validating weights, all while hardware and cost constraints keep shifting.
NEO drives the loop end to end: curated datasets, adapter and full fine-tune runs, distillation and quantization checks, and reproducible artifacts you can promote to staging without babysitting notebooks.
9x model compressionTrain & Fine-Tune Models
INT8 quantization-aware training compressing MobileNetV2 from 23.5MB to 2.6MB with only 3.8% accuracy drop.
7.8GB offline GGUFTrain & Fine-Tune Models
Gemma-3-12B adapted for symptom triage, drug interactions, and lab interpretation: 7.8GB GGUF for fully offline clinical use.
43% CO2 reductionTrain & Fine-Tune Models
Schedules training around grid carbon intensity using CodeCarbon tracking: 43% CO2 reduction with accuracy within 0.3% of baseline.
Install NEO in VS Code or Cursor and ship training, evals, and deployment from chat.
Get started def run_eval(model, tasks):- results = model.predict(tasks)+ results = batch_eval(model, tasks)+ log_regression(results) return score(results)