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 821 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
  1. stages:
  2. make_dataset:
  3. cmd: python ./make_dataset.py
  4. deps:
  5. - configs/dir.yaml
  6. - configs/parameters.yaml
  7. outs:
  8. - ids_dict.json:
  9. persist: true
  10. - test.csv:
  11. persist: true
  12. - train.csv:
  13. persist: true
  14. - val.csv:
  15. persist: true
  16. train_model:
  17. cmd: python ./train_model.py
  18. deps:
  19. - configs/dir.yaml
  20. - configs/parameters.yaml
  21. - ids_dict.json
  22. outs:
  23. - best_model.pth:
  24. persist: true
  25. - checkpoint_model.pth:
  26. persist: true
  27. - final_model.pth:
  28. persist: true
  29. metrics:
  30. - train_metrics.csv:
  31. cache: false
  32. predict_model:
  33. cmd: python ./predict_model.py
  34. deps:
  35. - configs/dir.yaml
  36. - configs/parameters.yaml
  37. - ids_dict.json
  38. metrics:
  39. - test_metrics.json:
  40. cache: false
Tip!

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

Comments

Loading...