Spaces:
Sleeping
Sleeping
nukopy commited on
Commit ·
710424f
1
Parent(s): 4575c7d
chore: update .gitignore to exclude specific pretrained models
Browse files- Added exclusion for all pretrained models in the 'whisper' directory to prevent them from being tracked by Git.
- .gitignore +1 -0
.gitignore
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
# pretrained models
|
| 2 |
models/**/*.pt
|
|
|
|
| 3 |
|
| 4 |
# Byte-compiled / optimized / DLL files
|
| 5 |
__pycache__/
|
|
|
|
| 1 |
# pretrained models
|
| 2 |
models/**/*.pt
|
| 3 |
+
!models/whisper/**/*.pt
|
| 4 |
|
| 5 |
# Byte-compiled / optimized / DLL files
|
| 6 |
__pycache__/
|