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 764 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
26
27
28
29
30
31
32
33
34
35
36
37
  1. stages:
  2. preprocessing:
  3. cmd: python3 preprocess.py
  4. deps:
  5. - general_params.yml
  6. - preprocess.py
  7. - raw/rML-raw-data.csv
  8. outs:
  9. - processed/rML-test.csv
  10. - processed/rML-train.csv
  11. training:
  12. cmd: python3 training.py
  13. deps:
  14. - general_params.yml
  15. - model_def.py
  16. - processed/rML-train.csv
  17. - training.py
  18. outs:
  19. - models:
  20. persist: true
  21. - params.yml:
  22. cache: false
  23. persist: true
  24. metrics:
  25. - training_metrics.csv:
  26. cache: false
  27. eval:
  28. cmd: python3 evaluate.py
  29. deps:
  30. - evaluate.py
  31. - general_params.yml
  32. - model_params.yml
  33. - models
  34. - processed/rML-test.csv
  35. metrics:
  36. - test_metrics.csv:
  37. cache: false
Tip!

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

Comments

Loading...