mirrormindv2 / gitignore
sam12555's picture
first commit
80f1c53
raw
history blame contribute delete
499 Bytes
# Ignore Python compiled files
__pycache__/
*.py[cod]
*$py.class
# Ignore virtual environments
venv/
env/
.venv/
.env/
# Ignore Hugging Face cache
*.cache/
transformers_cache/
huggingface/
# Ignore model files
mirror_model.pth
*.pt
*.pth
# Ignore dataset files
data/
*.csv
*.tsv
*.json
*.npz
# Ignore logs, checkpoints, temporary files
logs/
checkpoints/
*.log
*.tmp
# Ignore IDE/editor settings
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Ignore system files
.DS_Store
Thumbs.db