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 1.2 KB

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  1. # JetBrains PyCharm IDE
  2. .idea/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. env/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. # Checkpoints
  28. checkpoints
  29. # PyInstaller
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .coverage
  41. .coverage.*
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. *.cover
  46. .hypothesis/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. # Flask stuff:
  54. instance/
  55. .webassets-cache
  56. # Scrapy stuff:
  57. .scrapy
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/
  62. # Jupyter Notebook
  63. .ipynb_checkpoints
  64. # pyenv
  65. .python-version
  66. # celery beat schedule file
  67. celerybeat-schedule
  68. # SageMath parsed files
  69. *.sage.py
  70. # dotenv
  71. .env
  72. # virtualenv
  73. .venv
  74. venv/
  75. ENV/
  76. # Spyder project settings
  77. .spyderproject
  78. .spyproject
  79. # Rope project settings
  80. .ropeproject
  81. # mkdocs documentation
  82. /site
  83. # mypy
  84. .mypy_cache/
  85. # Generated files
  86. fairseq/temporal_convolution_tbc
Tip!

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

Comments

Loading...