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 480 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
  1. name: production-optimization-training
  2. conda_env: conda.yaml
  3. entry_points:
  4. main:
  5. parameters:
  6. max_epochs: {type: int, default: 50}
  7. batch_size: {type: int, default: 20}
  8. learning_rate: {type: float, default: 0.0003}
  9. alpha: {type: float, default: 0.1}
  10. command: |
  11. python training.py \
  12. --max_epochs {max_epochs} \
  13. --batch_size {batch_size} \
  14. --learning_rate {learning_rate} \
  15. --alpha {alpha}
Tip!

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

Comments

Loading...