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

.gitignore 242 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
20
21
22
23
24
25
26
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Poetry
  6. __pypackages__/
  7. .pyre/
  8. poetry.lock
  9. # Virtualenv
  10. .venv
  11. *.venv
  12. venv/
  13. ENV/
  14. # PyCharm
  15. .idea/
  16. # VS Code
  17. .vscode/
  18. models/station_*/station_*_model.keras
  19. models/station_*/station_*.keras
  20. .env
Tip!

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

Comments

Loading...