Files
2026-02-04 00:37:18 -05:00

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/