Upload folder using huggingface_hub
Browse files- .gitignore.bak +57 -0
.gitignore.bak
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Virtualenv
|
| 2 |
+
/.venv/
|
| 3 |
+
/venv/
|
| 4 |
+
|
| 5 |
+
# Byte-compiled / optimized / DLL files
|
| 6 |
+
__pycache__/
|
| 7 |
+
*.py[cod]
|
| 8 |
+
|
| 9 |
+
# C extensions
|
| 10 |
+
*.so
|
| 11 |
+
|
| 12 |
+
# Distribution / packaging
|
| 13 |
+
/bin/
|
| 14 |
+
/build/
|
| 15 |
+
/develop-eggs/
|
| 16 |
+
/dist/
|
| 17 |
+
/eggs/
|
| 18 |
+
/lib/
|
| 19 |
+
/lib64/
|
| 20 |
+
/output/
|
| 21 |
+
/parts/
|
| 22 |
+
/sdist/
|
| 23 |
+
/var/
|
| 24 |
+
/*.egg-info/
|
| 25 |
+
/.installed.cfg
|
| 26 |
+
/*.egg
|
| 27 |
+
/.eggs
|
| 28 |
+
|
| 29 |
+
# AUTHORS and ChangeLog will be generated while packaging
|
| 30 |
+
/AUTHORS
|
| 31 |
+
/ChangeLog
|
| 32 |
+
|
| 33 |
+
# BCloud / BuildSubmitter
|
| 34 |
+
/build_submitter.*
|
| 35 |
+
/logger_client_log
|
| 36 |
+
|
| 37 |
+
# Installer logs
|
| 38 |
+
pip-log.txt
|
| 39 |
+
pip-delete-this-directory.txt
|
| 40 |
+
|
| 41 |
+
# Unit test / coverage reports
|
| 42 |
+
.tox/
|
| 43 |
+
.coverage
|
| 44 |
+
.cache
|
| 45 |
+
.pytest_cache
|
| 46 |
+
nosetests.xml
|
| 47 |
+
coverage.xml
|
| 48 |
+
|
| 49 |
+
# Translations
|
| 50 |
+
*.mo
|
| 51 |
+
|
| 52 |
+
# Sphinx documentation
|
| 53 |
+
/docs/_build/
|
| 54 |
+
|
| 55 |
+
multi_view/results/
|
| 56 |
+
multi_view/models/
|
| 57 |
+
multi_view/ckpts/
|