.gitignore 1.2 KB

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