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 958 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
44
45
46
47
48
  1. stages:
  2. prepare:
  3. cmd: python3 src/prepare.py
  4. deps:
  5. - data_first_draft
  6. - annotattions-first-train-draft
  7. - src/prepare.py
  8. - src/utils/cv_utils.py
  9. params:
  10. - prepare.seed
  11. - prepare.train_proportion
  12. - prepare.validation_proportion
  13. - prepare.test_proportion
  14. - prepare.gamma
  15. - prepare.adjust_images_brightness_strategy
  16. - prepare.percentile
  17. outs:
  18. - datasets
  19. - yolo-config.yaml
  20. training:
  21. cmd: python3 src/train.py
  22. deps:
  23. - datasets
  24. - yolo-config.yaml
  25. - src/train.py
  26. params:
  27. - train.image_size
  28. - train.epochs
  29. - train.batch_size
  30. - train.init_lr
  31. - train.patience
  32. - train.seed
  33. - train.optimizer
  34. - train.directory_output
  35. outs:
  36. - output/train
  37. testing:
  38. cmd: python3 src/test.py
  39. params:
  40. - test.directory_output
  41. deps:
  42. - output/train/weights
  43. - src/utils/plot_utils.py
  44. - src/test.py
  45. outs:
  46. - output/test
Tip!

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

Comments

Loading...