| # Ignore virtual environment directories | |
| .venv/ | |
| # Ignore environment variable files | |
| .env | |
| # Ignore lock files | |
| uv.lock | |
| # Ignore Python bytecode files | |
| *.pyc | |
| *.pyo | |
| __pycache__/ | |
| */__pycache__/ | |
| **/__pycache__/ | |
| # Ignore Jupyter Notebook checkpoints | |
| .ipynb_checkpoints/ | |
| # Ignore IDE specific files | |
| .idea/ | |
| # Ignore logs | |
| logs/ | |
| # ML model files | |
| ml_models/ | |
| # Ignore experimental result files | |
| exp_results/ | |
| # Ignore png and jpg files | |
| *.png | |
| *.jpg | |
| # Ignore .ruff | |
| .ruff_cache | |
| # Test files | |
| test_* | |
| test_*.py | |
| *_test.py | |
| tests/__pycache__/ | |
| # Ignore md files | |
| *.md | |
| # | |
| docs/ | |
| # | |
| *_example.py | |
| # | |
| tests/ |