Create pipeline.yml
Browse filesAdd CI/CD-ready ML pipeline configuration
- pipeline.yml +21 -0
pipeline.yml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
stages:
|
| 2 |
+
- data_ingestion
|
| 3 |
+
- preprocessing
|
| 4 |
+
- training
|
| 5 |
+
- evaluation
|
| 6 |
+
- model_registration
|
| 7 |
+
|
| 8 |
+
data_ingestion:
|
| 9 |
+
script: load_data.py
|
| 10 |
+
|
| 11 |
+
preprocessing:
|
| 12 |
+
script: preprocess_data.py
|
| 13 |
+
|
| 14 |
+
training:
|
| 15 |
+
script: train_model.py
|
| 16 |
+
|
| 17 |
+
evaluation:
|
| 18 |
+
script: evaluate_model.py
|
| 19 |
+
|
| 20 |
+
model_registration:
|
| 21 |
+
script: register_model.py
|