.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. wip*
  2. repos
  3. .vscode
  4. *.env
  5. *egg-info
  6. *.so
  7. .conda
  8. build
  9. .VSCodeCounter
  10. conda/
  11. umamba.exe
  12. bin/
  13. *.whl
  14. aphrodite/commit_id.py
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. *.py[cod]
  18. *$py.class
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. build/
  24. develop-eggs/
  25. dist/
  26. downloads/
  27. eggs/
  28. .eggs/
  29. lib/
  30. lib64/
  31. parts/
  32. sdist/
  33. var/
  34. wheels/
  35. share/python-wheels/
  36. *.egg-info/
  37. .installed.cfg
  38. *.egg
  39. MANIFEST
  40. # PyInstaller
  41. # Usually these files are written by a python script from a template
  42. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  43. *.manifest
  44. *.spec
  45. # Installer logs
  46. pip-log.txt
  47. pip-delete-this-directory.txt
  48. # Unit test / coverage reports
  49. htmlcov/
  50. .tox/
  51. .nox/
  52. .coverage
  53. .coverage.*
  54. .cache
  55. nosetests.xml
  56. coverage.xml
  57. *.cover
  58. *.py,cover
  59. .hypothesis/
  60. .pytest_cache/
  61. cover/
  62. # Translations
  63. *.mo
  64. *.pot
  65. # Django stuff:
  66. *.log
  67. local_settings.py
  68. db.sqlite3
  69. db.sqlite3-journal
  70. # Flask stuff:
  71. instance/
  72. .webassets-cache
  73. # Scrapy stuff:
  74. .scrapy
  75. # Sphinx documentation
  76. docs/_build/
  77. # PyBuilder
  78. .pybuilder/
  79. target/
  80. # Jupyter Notebook
  81. .ipynb_checkpoints
  82. # IPython
  83. profile_default/
  84. ipython_config.py
  85. # pyenv
  86. # For a library or package, you might want to ignore these files since the code is
  87. # intended to run in multiple environments; otherwise, check them in:
  88. # .python-version
  89. # pipenv
  90. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  91. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  92. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  93. # install all needed dependencies.
  94. #Pipfile.lock
  95. # poetry
  96. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  97. # This is especially recommended for binary packages to ensure reproducibility, and is more
  98. # commonly ignored for libraries.
  99. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  100. #poetry.lock
  101. # pdm
  102. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  103. #pdm.lock
  104. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  105. # in version control.
  106. # https://pdm.fming.dev/#use-with-ide
  107. .pdm.toml
  108. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  109. __pypackages__/
  110. # Celery stuff
  111. celerybeat-schedule
  112. celerybeat.pid
  113. # SageMath parsed files
  114. *.sage.py
  115. # Environments
  116. .env
  117. .venv
  118. env/
  119. venv/
  120. ENV/
  121. env.bak/
  122. venv.bak/
  123. # Spyder project settings
  124. .spyderproject
  125. .spyproject
  126. # Rope project settings
  127. .ropeproject
  128. # mkdocs documentation
  129. /site
  130. # mypy
  131. .mypy_cache/
  132. .dmypy.json
  133. dmypy.json
  134. # Pyre type checker
  135. .pyre/
  136. # pytype static type analyzer
  137. .pytype/
  138. # Cython debug symbols
  139. cython_debug/
  140. # PyCharm
  141. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  142. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  143. # and can be added to the global gitignore or merged into this file. For a more nuclear
  144. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  145. .idea/
  146. # VSCode
  147. .vscode/
  148. # DS Store
  149. .DS_Store
  150. # Results
  151. *.csv
  152. # Python pickle files
  153. *.pkl
  154. # Sphinx documentation
  155. _build/
  156. # vim swap files
  157. *.swo
  158. *.swp
  159. # HIP files generated by PyTorch
  160. *.hip
  161. *_hip*
  162. kv_cache_states/*
  163. quant_params/*
  164. .ruff_cache/
  165. images/
  166. *.pdb
  167. # triton compiled files
  168. *.exp
  169. *.lib
  170. *.obj
  171. # generated files
  172. **/generated/**