.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. _site/
  2. .sass-cache/
  3. .jekyll-cache/
  4. .jekyll-metadata
  5. # Ignore folders generated by Bundler
  6. .bundle/
  7. vendor/
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # MacOS
  13. .DS_Store
  14. # Dataset
  15. data/FashionMNIST/
  16. data/translation2019zh/
  17. data/lcsts_tsv/
  18. # C extensions
  19. *.so
  20. # Distribution / packaging
  21. .Python
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. wheels/
  34. pip-wheel-metadata/
  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. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. local_settings.py
  67. db.sqlite3
  68. db.sqlite3-journal
  69. # Flask stuff:
  70. instance/
  71. .webassets-cache
  72. # Scrapy stuff:
  73. .scrapy
  74. # Sphinx documentation
  75. docs/_build/
  76. # PyBuilder
  77. target/
  78. # Jupyter Notebook
  79. .ipynb_checkpoints
  80. # IPython
  81. profile_default/
  82. ipython_config.py
  83. # pyenv
  84. .python-version
  85. # pipenv
  86. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  87. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  88. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  89. # install all needed dependencies.
  90. #Pipfile.lock
  91. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  92. __pypackages__/
  93. # Celery stuff
  94. celerybeat-schedule
  95. celerybeat.pid
  96. # SageMath parsed files
  97. *.sage.py
  98. # Environments
  99. .env
  100. .venv
  101. env/
  102. venv/
  103. ENV/
  104. env.bak/
  105. venv.bak/
  106. # Spyder project settings
  107. .spyderproject
  108. .spyproject
  109. # Rope project settings
  110. .ropeproject
  111. # mkdocs documentation
  112. /site
  113. # mypy
  114. .mypy_cache/
  115. .dmypy.json
  116. dmypy.json
  117. # Pyre type checker
  118. .pyre/