File size: 638 Bytes
24248ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# Ignore Python cache and compiled files
__pycache__/
*.py[cod]
*.pyo
# Ignore logs
*.log
logs/
*.out
# Ignore prediction files (JSON format)
*.json
# Ignore environment and dependency files
.env
*.env
*.venv
venv/
ENV/
*.lock
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints
# Ignore temporary or backup files
*.bak
*.swp
*.tmp
# Ignore OS-specific files
.DS_Store
Thumbs.db
# Ignore model checkpoint files (optional)
checkpoint/
*.ckpt
# If using Hugging Face Model repository, don't ignore the following:
!config.json
!tokenizer_config.json
!tokenizer.json
!special_tokens_map.json
!added_tokens.json
!pytorch_model.bin |