Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dvc.yaml 338 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. stages:
  2. full_pipeline:
  3. cmd: python -m src.pipeline
  4. deps:
  5. - data/raw/iris.csv
  6. - src/pipeline.py
  7. - src/data_preprocessing.py
  8. - src/train.py
  9. - src/drift_detection.py
  10. outs:
  11. - data/processed/iris_clean.csv
  12. - data/drift_baseline/iris_drift_baseline.html
  13. metrics:
  14. - metrics.json
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...