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

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

Comments

Loading...