CoolFace
Apppublic

garvitsachdeva/SpindleFlow-RL

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
.gitignore58 linesDownload Raw Back to root
1# Virtual environment2.venv/3venv/4env/bin/5env/lib/6 7# Python artifacts8__pycache__/9*.py[cod]10*.pyo11*.pyd12*.so13*.egg14*.egg-info/15dist/16build/17*.egg-link18 19# Environment variables (never commit secrets)20.env21.env.local22 23# Jupyter24.ipynb_checkpoints/25 26# IDE27.vscode/28.idea/29*.swp30*.swo31 32# OS33.DS_Store34Thumbs.db35 36# Training outputs / model checkpoints (large files)37runs/38checkpoints/39logs/40*.pt41*.pth42*.ckpt43 44# Tensorboard45tb_logs/46 47# pytest cache48.pytest_cache/49.coverage50htmlcov/51 52# Runtime data — specialist memory, spawn memory, resolution memory53data/specialist_memory.json54data/specialist_memory/55data/spawn_memory.jsonl56data/resolution_memory.jsonl57huggingface_blog/reward_curve.png
58