.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # JetBrains PyCharm IDE
  2. .idea/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # macOS dir files
  10. .DS_Store
  11. # Distribution / packaging
  12. .Python
  13. env/
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. wheels/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. # Checkpoints
  30. checkpoints
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *.cover
  48. .hypothesis/
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. local_settings.py
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # pyenv
  67. .python-version
  68. # celery beat schedule file
  69. celerybeat-schedule
  70. # SageMath parsed files
  71. *.sage.py
  72. # dotenv
  73. .env
  74. # virtualenv
  75. .venv
  76. venv/
  77. ENV/
  78. # Spyder project settings
  79. .spyderproject
  80. .spyproject
  81. # Rope project settings
  82. .ropeproject
  83. # mkdocs documentation
  84. /site
  85. # mypy
  86. .mypy_cache/
  87. # Generated files
  88. /fairseq/temporal_convolution_tbc
  89. /fairseq/modules/*_layer/*_forward.cu
  90. /fairseq/modules/*_layer/*_backward.cu
  91. /fairseq/version.py
  92. # data
  93. data-bin/
  94. # reranking
  95. /examples/reranking/rerank_data
  96. # Cython-generated C++ source files
  97. /fairseq/data/data_utils_fast.cpp
  98. /fairseq/data/token_block_utils_fast.cpp
  99. # VSCODE
  100. .vscode/ftp-sync.json
  101. .vscode/settings.json
  102. # Experimental Folder
  103. experimental/*
  104. # Weights and Biases logs
  105. wandb/
  106. # Hydra artifacts
  107. nohup.out
  108. multirun
  109. outputs