An automated data processing pipeline evaluates five sequential stages () to process machine learning workloads. At the start (), the system state is defined by Storage and System Load . At each subsequent stage , the state vector updates according to the following rules:
- Stage 1 (Data Scrubbing): ,
- Stage 2 (Feature Extraction): ,
- Stage 3 (Model Training): ,
- Stage 4 (Batch Validation): ,
- Stage 5 (System Deployment): ,
The pipeline performance metric at any stage is defined as .
Arrange the five stages in increasing order of their pipeline performance metric (from smallest value to largest value).
- 1Data Scrubbing (Stage 1)
- 2Feature Extraction (Stage 2)
- 3Batch Validation (Stage 4)
- 4Model Training (Stage 3)
- 5System Deployment (Stage 5)
Cevap
The correct increasing order of the stages by metric is Data Scrubbing (), Feature Extraction (), Batch Validation (), Model Training (), and System Deployment ().
Tracking each state sequentially yields , , , , and . Arranging these from smallest to largest places Batch Validation () before Model Training ().
Adım Adım Çözüm
Anahtar Kavram
Sequential state tracking requires evaluating recursive function rules step-by-step before applying ordering logic.