manjuprasads commited on
Commit
14dc2cf
·
verified ·
1 Parent(s): fd5f640

Create pipeline.yml

Browse files

Add CI/CD-ready ML pipeline configuration

Files changed (1) hide show
  1. 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