| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| env/ | |
| venv/ | |
| ENV/ | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| *.egg | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| *.ipynb_checkpoints | |
| # Data | |
| data/raw/*.csv | |
| data/raw/*.json | |
| data/processed/*.npy | |
| data/processed/*.pkl | |
| # Models & Results | |
| models/*.pth | |
| models/*.pkl | |
| results/metrics/*.csv | |
| results/plots/*.png | |
| results/predictions/*.csv | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Logs | |
| *.log | |