Spaces:
Running
Running
| # ============================================ | |
| # Data Files - NEVER commit to Git | |
| # ============================================ | |
| # Following data science best practices: | |
| # - Code goes in Git | |
| # - Data goes in HuggingFace Datasets | |
| data/ | |
| *.parquet | |
| *.pkl | |
| *.csv | |
| *.h5 | |
| *.hdf5 | |
| *.feather | |
| # ============================================ | |
| # Model Artifacts | |
| # ============================================ | |
| models/checkpoints/ | |
| *.pth | |
| *.safetensors | |
| *.ckpt | |
| # ============================================ | |
| # Credentials & Secrets | |
| # ============================================ | |
| .env | |
| config/api_keys.yaml | |
| *.key | |
| *.pem | |
| # ============================================ | |
| # Python | |
| # ============================================ | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.egg-info/ | |
| .pytest_cache/ | |
| .venv/ | |
| venv/ | |
| verify_install.py | |
| # ============================================ | |
| # IDE & OS | |
| # ============================================ | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| .DS_Store | |
| Thumbs.db | |
| # ============================================ | |
| # Jupyter | |
| # ============================================ | |
| .ipynb_checkpoints/ | |
| # ============================================ | |
| # Temporary Files | |
| # ============================================ | |
| *.tmp | |
| *.log | |
| .cache/ | |
| # Day 3: Results and temporary files | |
| results/ | |
| nul | |
| notebooks/__marimo__/session/ | |
| .claude/settings.local.json | |
| doc/practitioners_guide.pdf | |
| # Large files - do not commit | |
| doc/*.pdf | |
| notebooks/__marimo__/session/*.json | |