MLOps (Machine Learning Operations) นำแนวปฏิบัติแบบ DevOps มาประยุกต์ใช้กับ ML โดยจัดการ วงจรชีวิต ML ทั้งหมด (ข้อมูล, การฝึก, การ deploy, การเฝ้าติดตาม) อย่างน่าเชื่อถือและในระดับขนาดใหญ่ มันจัดการกับความท้าทายเชิงปฏิบัติการที่เป็นเอกลักษณ์ของการ deploy และดูแล ML ในการใช้งานจริง
วงจรชีวิต ML
ML projects involve a full lifecycle (not just training a model):
1. DATA → collect, clean, label, version data (data is foundational)
2. TRAINING → develop, train, and evaluate models (experimentation, tuning)
3. DEPLOYMENT → put the model into production (serving predictions/inference)
4. MONITORING → track performance in production; detect issues
5. MAINTENANCE → retrain/update models as data and performance change
→ an ongoing cycle, not a one-time effort
