| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| # Environments | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| # IDEs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # PyTorch Geometric data cache | |
| /tmp/ | |
| # Logs (keep training logs) | |
| # *.log | |
| # Large model files (keep the important ones) | |
| # Only ignore very large checkpoints | |
| *_epoch_*.pth | |
| checkpoint_*.pth | |
| # Temporary files | |
| *.tmp | |
| *.temp | |
| *.bak | |
| # Keep these important files: | |
| # - *.png (visualizations) | |
| # - *.json (results) | |
| # - *.pth (best models) | |
| # - *.pkl (saved models) | |
| # - *.log (training logs) |