-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (42 loc) · 894 Bytes
/
.gitignore
File metadata and controls
52 lines (42 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# --- General Python ---
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/
# Virtual environments
venv/
env/
*.venv/
# Jupyter checkpoints
.ipynb_checkpoints/
# pytest & coverage
.pytest_cache/
coverage.xml
*.coverage
htmlcov/
# MyPy & other caches
.mypy_cache/
.cache/
# Logs
*.log
# IDE / Editor settings
.vscode/
.idea/
# macOS & Windows noise
.DS_Store
Thumbs.db
# --- Project-specific (audio data) ---
# Raw Philharmonia library and generated datasets are large; keep code & metadata only.
audio/
noise.wav
# Per-SNR temporary outputs
dataset_snr*/
# Final dataset keeps .csv + README, but ignore heavy .wav files
# (we keep metadata, so DO NOT ignore dataset/**.csv or dataset/**README*)
dataset/**/*.wav
# --- Git LFS note ---
# If you plan to version some audio or model weights, consider Git LFS instead of removing patterns above.