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 777 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
  1. stages:
  2. modeling:
  3. cmd: python -m task-3-modeling.src.train
  4. deps:
  5. - src/const/general_const.py
  6. - task-2-data-processing/data/processed-data
  7. - task-3-modeling/src/const/class_names.txt
  8. - task-3-modeling/src/const/modeling_const.py
  9. - task-3-modeling/src/train.py
  10. outs:
  11. - prod_model:
  12. persist: true
  13. - task-3-modeling/model-checkpoint:
  14. persist: true
  15. - task-4-evaluating/eval/params/params.yml:
  16. cache: false
  17. evaluating:
  18. cmd: python -m task-4-evaluating.src.evaluation
  19. deps:
  20. - prod_model
  21. - src/const/general_const.py
  22. - task-4-evaluating/src/const/evaluating_const.py
  23. - task-4-evaluating/src/evaluation.py
  24. metrics:
  25. - task-4-evaluating/eval/metrics/metrics.csv:
  26. cache: false
Tip!

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

Comments

Loading...