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

setup.py 407 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 setuptools
  2. setuptools.setup(
  3. name="TorchUtils",
  4. version="1.0.0",
  5. install_requires=[],
  6. packages=[
  7. "TorchUtils",
  8. "TorchUtils.Analyzer",
  9. "TorchUtils.Core",
  10. "TorchUtils.DatasetGenerator",
  11. "TorchUtils.Layers",
  12. "TorchUtils.ModelGenerator",
  13. "TorchUtils.PipeLine",
  14. "TorchUtils.Trainer",
  15. "torchUtils.Visualizer"
  16. ]
  17. )
Tip!

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

Comments

Loading...