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

MLproject 951 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
  1. name: mnist-autolog-example1
  2. conda_env: conda.yaml
  3. entry_points:
  4. main:
  5. parameters:
  6. max_epochs: {type: int, default: 10}
  7. gpus: {type: int, default: 0}
  8. accelerator: {type str, default: "None"}
  9. batch_size: {type: int, default: 64}
  10. num_workers: {type: int, default: 3}
  11. learning_rate: {type: float, default: 0.001}
  12. patience: {type int, default: 4}
  13. mode: {type str, default: 'min'}
  14. verbose: {type bool, default: True}
  15. monitor: {type str, default: 'val_loss'}
  16. command: |
  17. python mnist_autolog_example1.py \
  18. --max_epochs {max_epochs} \
  19. --gpus {gpus} \
  20. --accelerator {accelerator} \
  21. --batch_size {batch_size} \
  22. --num_workers {num_workers} \
  23. --lr {learning_rate} \
  24. --es_patience {patience} \
  25. --es_mode {mode} \
  26. --es_verbose {verbose} \
  27. --es_monitor {monitor}
Tip!

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

Comments

Loading...