| 123456789101112131415161718192021222324252627 |
- # Python
- __pycache__/
- *.py[cod]
- *.egg-info/
- .venv/
- venv/
- # Env and secrets
- .env
- .env.*
- *.key
- *.pem
- # Data and model artifacts
- data/raw/*
- data/processed/*
- !data/raw/.gitkeep
- !data/processed/.gitkeep
- outputs/
- checkpoints/
- runs/
- wandb/
- # OS / IDE
- .DS_Store
- .vscode/
- .idea/
|