mirror of
https://github.com/Nighthawk42/MioTTS.git
synced 2026-08-30 08:02:29 +00:00
61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
# ---------------------------------------------------------------------------- #
|
|
# Python & System #
|
|
# ---------------------------------------------------------------------------- #
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.DS_Store
|
|
.coverage
|
|
.pytest_cache/
|
|
|
|
# ---------------------------------------------------------------------------- #
|
|
# Virtual Environments #
|
|
# ---------------------------------------------------------------------------- #
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env
|
|
node_modules/
|
|
|
|
|
|
# ---------------------------------------------------------------------------- #
|
|
# Model Weights & Large Files #
|
|
# ---------------------------------------------------------------------------- #
|
|
# PyTorch & ML Checkpoints
|
|
*.pth
|
|
*.pt
|
|
*.ckpt
|
|
*.bin
|
|
*.onnx
|
|
|
|
# HuggingFace / Safetensors
|
|
*.safetensor*
|
|
|
|
# ---------------------------------------------------------------------------- #
|
|
# Logs, Outputs & TensorBoard #
|
|
# ---------------------------------------------------------------------------- #
|
|
# Actual TensorBoard event files
|
|
events.out.tfevents.*
|
|
|
|
# Common Training Output & Log Directories
|
|
output/
|
|
logs/
|
|
results/
|
|
|
|
# PyTorch Default TensorBoard directory
|
|
runs/
|
|
|
|
# PyTorch Lightning Default directory (common in TTS)
|
|
lightning_logs/
|
|
|
|
# Other variations
|
|
tensorboard/
|
|
tensorboard_logs/
|
|
wandb/
|
|
|
|
# ---------------------------------------------------------------------------- #
|
|
# IDE Settings #
|
|
# ---------------------------------------------------------------------------- #
|
|
.vscode/
|
|
.idea/
|
|
.vs/ |