You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # Custom
  2. *.svs
  3. *.xml
  4. *.csv
  5. *.xcf
  6. *.zip
  7. *.json
  8. *.state
  9. *.tiff
  10. *.tif
  11. .idea
  12. *.jpeg
  13. *.jpg
  14. **/data/
  15. **/patches/
  16. classification_stuff/Transfer-Learning-Library
  17. # Byte-compiled / optimized / DLL files
  18. __pycache__/
  19. *.py[cod]
  20. *$py.class
  21. # C extensions
  22. *.so
  23. # Distribution / packaging
  24. .Python
  25. build/
  26. develop-eggs/
  27. dist/
  28. downloads/
  29. eggs/
  30. .eggs/
  31. lib/
  32. lib64/
  33. parts/
  34. sdist/
  35. var/
  36. wheels/
  37. pip-wheel-metadata/
  38. share/python-wheels/
  39. *.egg-info/
  40. .installed.cfg
  41. *.egg
  42. MANIFEST
  43. # PyInstaller
  44. # Usually these files are written by a python script from a template
  45. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  46. *.manifest
  47. *.spec
  48. # Installer logs
  49. pip-log.txt
  50. pip-delete-this-directory.txt
  51. # Unit test / coverage reports
  52. htmlcov/
  53. .tox/
  54. .nox/
  55. .coverage
  56. .coverage.*
  57. .cache
  58. nosetests.xml
  59. coverage.xml
  60. *.cover
  61. *.py,cover
  62. .hypothesis/
  63. .pytest_cache/
  64. # Translations
  65. *.mo
  66. *.pot
  67. # Django stuff:
  68. *.log
  69. local_settings.py
  70. db.sqlite3
  71. db.sqlite3-journal
  72. # Flask stuff:
  73. instance/
  74. .webassets-cache
  75. # Scrapy stuff:
  76. .scrapy
  77. # Sphinx documentation
  78. docs/_build/
  79. # PyBuilder
  80. target/
  81. # Jupyter Notebook
  82. .ipynb_checkpoints
  83. # IPython
  84. profile_default/
  85. ipython_config.py
  86. # pyenv
  87. .python-version
  88. # pipenv
  89. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  90. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  91. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  92. # install all needed dependencies.
  93. #Pipfile.lock
  94. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  95. __pypackages__/
  96. # Celery stuff
  97. celerybeat-schedule
  98. celerybeat.pid
  99. # SageMath parsed files
  100. *.sage.py
  101. # Environments
  102. .env
  103. .venv
  104. env/
  105. venv/
  106. ENV/
  107. env.bak/
  108. venv.bak/
  109. # Spyder project settings
  110. .spyderproject
  111. .spyproject
  112. # Rope project settings
  113. .ropeproject
  114. # mkdocs documentation
  115. /site
  116. # mypy
  117. .mypy_cache/
  118. .dmypy.json
  119. dmypy.json
  120. # Pyre type checker
  121. .pyre/