| # Python related | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| *.egg-info/ | |
| *.egg | |
| *.venv | |
| *.virtualenv | |
| *.pypirc | |
| # IDEs and Editors | |
| ## Visual Studio Code | |
| .vscode/ | |
| ## PyCharm | |
| .idea/ | |
| ## Jupyter notebooks | |
| .ipynb_checkpoints/ | |
| # Operating Systems | |
| ## macOS | |
| .DS_Store | |
| ## Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| ## Linux | |
| *~ | |
| # TensorFlow specific (if you save models or have checkpoints) | |
| *.h5 | |
| *.ckpt | |
| # Other | |
| # Directories or files for logs, databases, and datasets that you don't want to commit | |
| logs/ | |
| datasets/ | |
| *.log | |
| *.sqlite | |
| # If you use virtual environments and you name them `env` or similar | |
| env/ | |