Spaces:
Running
Running
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| *.egg | |
| .github/ | |
| script.py | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Model outputs and training artifacts | |
| my_model/ | |
| checkpoints/ | |
| runs/ | |
| wandb/ | |
| *.pth | |
| *.pt | |
| *.safetensors | |
| *.bin | |
| # Dataset caches | |
| .cache/ | |
| *.arrow | |
| *.parquet | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| *.ipynb | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| # Logs | |
| *.log | |
| logs/ | |
| # Environment variables | |
| .env | |
| .env.local | |