Basic AI Concepts
- 1. Artificial Intelligence (AI)
- 2. Machine Learning (ML)
- 3. Deep Learning
- 4. Generative AI
- 5. Natural Language Processing (NLP)
- 6. Statistical Learning
- 7. Transformers
- 8. Fine Tuning
- 9. Model ValidationCurrent
- 10. Reinforcement Learning (RL)
- 11. Supervised Learning
- 12. Unsupervised Learning
- 13. System Prompts
- 14. System Roles
- 15. User Prompts
- 16. Zero-shot prompting
- 17. Multi Shot Prompting
- 18. Templates
Model Validation
Sep 25, 2025
Model validation is the process of checking how well the model works before it is ready for general use.
Why It's Important
Weak or untested AI can cause serious risk to both the providers and end users, as well as anyone else in the supply chain. Risks such as bias, hallucinations, drift and sensitive information disclosure need to be identified and fixed before they cause an incident.
How It Works
- Collect data
- Split dataset, for example
- 70% - training set for the AI to study
- 15% - validation set to test the AI
- 15% - test set for final validation of the model
- Train the model
- Validate the model
- Use model training techniques to improve model
- Final test
Training vs Validation
When building an AI model we split the data in to these two groups:
- Training data - used to teach the model
- Validation data - used to test the model
A model is trained to identify patterns or perform a specific task, validation ensures that the training works and the AI is performing the job correctly. By validating models, safety teams ensure that AI is accurate, reliable and safe to use.
Validation also ensures that the AI is not just memorizing data but is able to handle unseen data, i.e. using pattern recognition over memorization. Without validation the AI might be:
- Overfitting - too focused on training data, failing in the real world
- Underfitting - too simple, missing important patterns
Next Article
Continue reading in this category