Spaces:
Build error
Build error
Commit ·
52bbb8d
1
Parent(s): f1987cd
Ignore data and checkpoints
Browse files- .gitignore +31 -0
.gitignore
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python cache
|
| 2 |
+
__pycache__/
|
| 3 |
+
**/__pycache__/
|
| 4 |
+
*.pyc
|
| 5 |
+
*.pyo
|
| 6 |
+
|
| 7 |
+
# Data / audio / outputs
|
| 8 |
+
data_22k/
|
| 9 |
+
wavs/
|
| 10 |
+
*.wav
|
| 11 |
+
*.flac
|
| 12 |
+
*.mp3
|
| 13 |
+
output.wav
|
| 14 |
+
|
| 15 |
+
# Model checkpoints / big binaries
|
| 16 |
+
Models/**/*.pth
|
| 17 |
+
Models/**/*.pt
|
| 18 |
+
Models/**/*.ckpt
|
| 19 |
+
*.pth
|
| 20 |
+
*.pt
|
| 21 |
+
*.ckpt
|
| 22 |
+
|
| 23 |
+
# Logs / tensorboard
|
| 24 |
+
runs/
|
| 25 |
+
tensorboard/
|
| 26 |
+
*.log
|
| 27 |
+
|
| 28 |
+
# OS / editor
|
| 29 |
+
.DS_Store
|
| 30 |
+
.vscode/
|
| 31 |
+
.idea/
|