| # 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 | |
| !label_list.json | |
| !tokenizer_config.json | |
| !tokenizer.json | |
| !special_tokens.json | |
| !added_tokens.json | |
| !pytorch_model.bin |