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

app.py 321 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
  1. import beam
  2. app = beam.App(
  3. name="dagshub_palm_recognition_app_v3",
  4. cpu=8,
  5. gpu="A10G",
  6. memory="32Gi",
  7. python_version="python3.9",
  8. python_packages="./requirements.txt",
  9. )
  10. # Persistent Volumes are only available in the app they're defined in
  11. app.Mount.PersistentVolume(path="./model", name="model")
Tip!

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

Comments

Loading...