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 313 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
  1. stages:
  2. trainme:
  3. cmd: python train.py
  4. deps:
  5. - users.csv
  6. params:
  7. - dense
  8. - epochs
  9. - log_file
  10. outs:
  11. - logs
  12. metrics:
  13. - summary.json:
  14. cache: false
  15. plots:
  16. - plots.csv:
  17. cache: false
  18. y: accuracy
  19. x_label: Epoch
  20. title: Accuracy
Tip!

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

Comments

Loading...