Spaces:
Sleeping
Sleeping
Upload .gitignore.txt
Browse files- .gitignore.txt +82 -0
.gitignore.txt
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
develop-eggs/
|
| 9 |
+
dist/
|
| 10 |
+
downloads/
|
| 11 |
+
eggs/
|
| 12 |
+
.eggs/
|
| 13 |
+
lib/
|
| 14 |
+
lib64/
|
| 15 |
+
parts/
|
| 16 |
+
sdist/
|
| 17 |
+
var/
|
| 18 |
+
wheels/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
.installed.cfg
|
| 21 |
+
*.egg
|
| 22 |
+
MANIFEST
|
| 23 |
+
|
| 24 |
+
# Virtual Environment - NEVER commit these!
|
| 25 |
+
venv/
|
| 26 |
+
env/
|
| 27 |
+
ENV/
|
| 28 |
+
accent-env/
|
| 29 |
+
.venv/
|
| 30 |
+
*.venv
|
| 31 |
+
|
| 32 |
+
# Model Cache Directories
|
| 33 |
+
model_cache/
|
| 34 |
+
pretrained_models/
|
| 35 |
+
huggingface_cache/
|
| 36 |
+
transformers_cache/
|
| 37 |
+
.cache/
|
| 38 |
+
|
| 39 |
+
# SpeechBrain specific cache
|
| 40 |
+
lang-id-voxlingua107-ecapa/
|
| 41 |
+
accent-id-commonaccent_ecapa/
|
| 42 |
+
accent-id-commonaccent_xlsr-en-english/
|
| 43 |
+
|
| 44 |
+
# Temporary files
|
| 45 |
+
input_video.mp4
|
| 46 |
+
audio.wav
|
| 47 |
+
temp_video.*
|
| 48 |
+
temp_audio.*
|
| 49 |
+
*.tmp
|
| 50 |
+
|
| 51 |
+
# Jupyter Notebook
|
| 52 |
+
.ipynb_checkpoints
|
| 53 |
+
|
| 54 |
+
# pyenv
|
| 55 |
+
.python-version
|
| 56 |
+
|
| 57 |
+
# Environment variables
|
| 58 |
+
.env
|
| 59 |
+
.venv
|
| 60 |
+
|
| 61 |
+
# IDE
|
| 62 |
+
.vscode/
|
| 63 |
+
.idea/
|
| 64 |
+
*.swp
|
| 65 |
+
*.swo
|
| 66 |
+
*~
|
| 67 |
+
|
| 68 |
+
# OS
|
| 69 |
+
.DS_Store
|
| 70 |
+
.DS_Store?
|
| 71 |
+
._*
|
| 72 |
+
.Spotlight-V100
|
| 73 |
+
.Trashes
|
| 74 |
+
ehthumbs.db
|
| 75 |
+
Thumbs.db
|
| 76 |
+
|
| 77 |
+
# Logs
|
| 78 |
+
*.log
|
| 79 |
+
logs/
|
| 80 |
+
|
| 81 |
+
# HuggingFace transformers cache
|
| 82 |
+
~/.cache/huggingface/
|