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

argv_exp.py 150 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. import sys
  2. alpha = float(sys.argv[1]) if len(sys.argv)> 1 else 0.5
  3. l1_ratio = float(sys.argv[2]) if len(sys.argv)> 2 else 0.5
  4. print(alpha, l1_ratio)
Tip!

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

Comments

Loading...