mirror of
https://github.com/Nighthawk42/llm-tts-factory.git
synced 2026-08-30 07:22:27 +00:00
56 lines
747 B
Plaintext
56 lines
747 B
Plaintext
# =========================
|
|
# Virtual Environments
|
|
# =========================
|
|
.venv/
|
|
venv/
|
|
env/
|
|
node_modules/
|
|
|
|
# =========================
|
|
# Python Cache & Build
|
|
# =========================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# =========================
|
|
# Model Weights & Checkpoints
|
|
# =========================
|
|
*.pth
|
|
*.pt
|
|
*.safetensors
|
|
*.bin
|
|
*.ckpt
|
|
*.onnx
|
|
|
|
# =========================
|
|
# Specific Files
|
|
# =========================
|
|
test.py
|
|
*.json
|
|
*.jsonl
|
|
code_digest.txt
|
|
*.lock
|
|
*.bak
|
|
|
|
# =========================
|
|
# Data, Logs, & Outputs
|
|
# =========================
|
|
wandb/
|
|
logs/
|
|
dataset/
|
|
datasets/
|
|
*.wav
|
|
*.flac
|
|
*.mp3
|
|
|
|
# =========================
|
|
# OS & Editor Files
|
|
# =========================
|
|
.DS_Store
|
|
.env
|
|
.vscode/
|
|
.idea/ |