AI Fundamentals

The AI Development Lifecycle

The AI Development Lifecycle

AI products do not spring fully formed from a research lab. They move through a structured lifecycle — from initial research to deployment and ongoing monitoring. Knowing where human evaluation fits in this pipeline helps you understand why your tasks matter and what teams do with your feedback.

Stage 1: Research and Prototyping

Scientists experiment with architectures, training methods, and datasets. Models at this stage are rough — capable of impressive demos but unreliable for production. Internal evaluators test early versions and identify obvious failures.

Stage 2: Pre-Training

Large foundation models are trained on massive datasets — often trillions of tokens of text or billions of images. This stage requires enormous compute resources and produces a general-purpose model that knows language patterns but is not yet tuned for helpful, safe conversation.

Stage 3: Fine-Tuning and Alignment

The base model is adapted for specific purposes: customer support, coding assistance, medical Q&A. Techniques include supervised fine-tuning (learning from human-written examples) and reinforcement learning from human feedback (learning from human ratings). This is where much AIDASH evaluation work feeds directly into model improvement.

Stage 4: Safety Testing and Red Teaming

Before release, teams deliberately try to break the model — probing for harmful outputs, bias, privacy leaks, and jailbreaks. Red teamers and safety evaluators document vulnerabilities so they can be patched.

Stage 5: Deployment

The model ships to users, often behind API access or integrated into products. Deployment is not the end — it is the beginning of production monitoring.

Stage 6: Continuous Evaluation

Live systems are sampled and evaluated regularly. User complaints, automated metrics, and human review pipelines catch regressions. Models are retrained periodically with new data and evaluator feedback.

Your Role Across the Lifecycle

Depending on the task, you may be evaluating a pre-release model (helping decide if it is ready to ship), comparing model versions (did the update improve or degrade quality?), auditing production outputs (is the live system behaving?), or providing training signal (which response is better?). Understanding the stage clarifies what "good" looks like for your specific assignment.

Regression Testing in Practice

When a company releases "Model v2," users expect improvement — but updates can silently break things that worked before. Regression testing compares new and old versions on the same prompts. As an evaluator, you may be asked whether a change fixed a known problem without introducing new ones. Flagging regressions is as valuable as praising improvements; teams need to know what got worse, not just what got better.

Key Takeaways

  • AI development moves from research through training, alignment, safety testing, deployment, and monitoring
  • Human evaluation is critical at multiple stages, not just before launch
  • Your feedback may directly influence fine-tuning and safety improvements
  • Ask yourself: what decision will this evaluation inform?