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

main.py 360 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
  1. import hydra
  2. from omegaconf import DictConfig
  3. from process_data import process_data
  4. from segment import segment
  5. from run_notebook import run_notebook
  6. @hydra.main(
  7. config_path="../config",
  8. config_name="main",
  9. )
  10. def main(config: DictConfig):
  11. process_data(config)
  12. segment(config)
  13. run_notebook(config)
  14. if __name__ == "__main__":
  15. main()
Tip!

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

Comments

Loading...