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 523 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
15
16
17
18
19
20
21
22
23
24
25
  1. stages:
  2. prepare_data:
  3. cmd: python src/create_data.py
  4. deps:
  5. - ecg_data/all_data
  6. outs:
  7. - ecg_data/train.csv:
  8. persist: true
  9. - ecg_data/test.csv:
  10. persist: true
  11. anomaly_detection:
  12. cmd: python src/train.py
  13. deps:
  14. - src/create_data.py
  15. - src/mlflow_log.py
  16. - src/ad_if.py
  17. - ecg_data/train.csv
  18. - ecg_data/train.csv
  19. - src/hyperparams.yaml
  20. outs:
  21. - if/isolation_forest.sav:
  22. persist: true
  23. metrics:
  24. - metrics.csv:
  25. persist: true
Tip!

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

Comments

Loading...