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 678 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
  1. stages:
  2. data-split:
  3. cmd: python src/data-prep.py
  4. deps:
  5. - classification/
  6. - src/data-prep.py
  7. outs:
  8. - data/test_data.npy
  9. - data/train_data.npy
  10. - data/val_data.npy
  11. - data/test_label.npy
  12. - data/train_label.npy
  13. - data/val_label.npy
  14. training:
  15. cmd: python src/train_model.py
  16. deps:
  17. - data/test_data.npy
  18. - data/train_data.npy
  19. - data/val_data.npy
  20. - data/test_label.npy
  21. - data/train_label.npy
  22. - data/val_label.npy
  23. - src/train_model.py
  24. params:
  25. - training.num_classes
  26. - training.nb_epoch
  27. - training.base_lr
  28. metrics:
  29. - scores.json:
  30. cache: false
Tip!

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

Comments

Loading...