Ajouts au .gitignore : - output/ : données patient anonymisées et résultats pipeline (ne doivent pas être versionnées) - unsloth_compiled_cache/ : cache de compilation Unsloth - *.rttm : fichiers de diarisation audio - /benchmark_*.py, /bench_pipeline.py : scripts de benchmark ponctuels (racine) - training/ : artefacts d'entraînement Suppression du tracking de output/ via git rm --cached (1603 fichiers, ~1.2M lignes). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
970 B
Plaintext
93 lines
970 B
Plaintext
# === Python ===
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
*.whl
|
|
|
|
# === Virtual environments ===
|
|
.venv/
|
|
venv/
|
|
venv_*/
|
|
env/
|
|
|
|
# === ML Models & Data ===
|
|
*.pt
|
|
*.pth
|
|
*.onnx
|
|
*.bin
|
|
*.safetensors
|
|
*.h5
|
|
*.hdf5
|
|
*.pkl
|
|
*.pickle
|
|
*.npy
|
|
*.npz
|
|
*.faiss
|
|
models/
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# === Documents & Media ===
|
|
*.pdf
|
|
*.docx
|
|
*.xlsx
|
|
*.csv
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
*.gif
|
|
*.mp3
|
|
*.wav
|
|
*.mp4
|
|
|
|
# === IDE ===
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# === OS ===
|
|
.DS_Store
|
|
Thumbs.db
|
|
.~lock.*
|
|
|
|
# === Secrets ===
|
|
.env
|
|
*.env
|
|
credentials.json
|
|
token.pickle
|
|
|
|
# === Logs & Cache ===
|
|
*.log
|
|
logs/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# === Backups ===
|
|
*_backup_*
|
|
backups/
|
|
|
|
# === Output (données patient anonymisées, résultats pipeline) ===
|
|
output/
|
|
|
|
# === Caches externes ===
|
|
unsloth_compiled_cache/
|
|
|
|
# === Fichiers audio/diarisation ===
|
|
*.rttm
|
|
|
|
# === Scripts de benchmark ponctuels (racine seulement) ===
|
|
/benchmark_*.py
|
|
/bench_pipeline.py
|
|
|
|
# === Training artifacts ===
|
|
training/
|