.gitignore 3.2 KB

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