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 629 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
  1. stages:
  2. prepare-train-data:
  3. cmd: python prepare.py prepare baby-yoda/images baby-yoda/yolo baby-yoda/train
  4. deps:
  5. - baby-yoda/images
  6. - baby-yoda/yolo
  7. - prepare.py
  8. outs:
  9. - baby-yoda/train/train.txt
  10. - baby-yoda/train/val.txt
  11. train:
  12. cmd: python train.py -l 0.001 -pretrained ./pretrained_models/yolov4.conv.137.pth
  13. -classes 2 -train_label_path baby-yoda/train/train.txt -dir baby-yoda/images
  14. deps:
  15. - baby-yoda/images
  16. - baby-yoda/train/train.txt
  17. - baby-yoda/train/val.txt
  18. - cfg.py
  19. - pretrained_models/yolov4.conv.137.pth
  20. - train.py
  21. outs:
  22. - checkpoints
Tip!

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

Comments

Loading...