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 589 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  1. build/
  2. dist/
  3. torchvision.egg-info/
  4. torchvision/version.py
  5. */**/__pycache__
  6. */__pycache__
  7. */*.pyc
  8. */**/*.pyc
  9. */**/**/*.pyc
  10. */**/*~
  11. *~
  12. docs/build
  13. # sphinx-gallery
  14. docs/source/auto_examples/
  15. docs/source/gen_modules/
  16. docs/source/generated/
  17. docs/source/models/generated/
  18. docs/source/sg_execution_times.rst
  19. # pytorch-sphinx-theme gets installed here
  20. docs/src
  21. .coverage
  22. htmlcov
  23. .*.swp
  24. *.so*
  25. *.dylib*
  26. */*.so*
  27. */*.dylib*
  28. *.swp
  29. *.swo
  30. gen.yml
  31. .mypy_cache
  32. .vscode/
  33. .idea/
  34. *.orig
  35. *-checkpoint.ipynb
  36. *.venv
  37. ## Xcode User settings
  38. xcuserdata/
  39. # direnv
  40. .direnv
  41. .envrc
  42. scripts/release_notes/data.json
Tip!

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

Comments

Loading...