| # Ignore all checkpoint files with .pkl extension | |
| *.pkl | |
| # Also ignore common Python cache and build files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Ignore IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Ignore OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Ignore Jupyter notebook checkpoints | |
| .ipynb_checkpoints/ | |