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.py 281 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. from .history import History
  2. from .summary import Summary
  3. class Run(object):
  4. def __init__(self, run_id, dir, config):
  5. self.id = run_id
  6. self.dir = dir
  7. self.config = config
  8. self.history = History(self.dir)
  9. self.summary = Summary(self.dir)
Tip!

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

Comments

Loading...