.gitignore 3.1 KB

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