Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

run_experiments.sh 652 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. #!/bin/bash
  2. # dvc exp run --name "search-grid" --queue \
  3. # -S 'prepare.gamma=0.05,0.1,0.4,0.67' \
  4. # -S 'prepare.adjust_images_brightness_strategy=None,All,Dark' \
  5. # -S 'prepare.percentile=25,37.5,50' \
  6. # -S 'train.epochs=100,250,500,1000' \
  7. # -S 'train.init_lr=0.0001,0.001,0.01' \
  8. # -S 'train.patience=10,15,25,50'
  9. dvc exp clean
  10. dvc exp remove --all
  11. dvc exp run -f --name "search-grid" --queue \
  12. -S 'prepare.gamma=0.4,0.67' \
  13. -S 'prepare.adjust_images_brightness_strategy=Dark' \
  14. -S 'prepare.percentile=25' \
  15. -S 'train.epochs=250' \
  16. -S 'train.init_lr=0.0001' \
  17. -S 'train.patience=10'
  18. dvc queue start
Tip!

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

Comments

Loading...