File size: 449 Bytes
c945597 d0d5f60 c945597 d0d5f60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | .git
.gitignore
.DS_Store
.venv
.env
.pytest_cache
__pycache__
*.pyc
*.pyo
*.pyd
# Local artifacts / logs
wandb
checkpoints
final_model
*.log
# Build and packaging metadata
*.egg-info
dist
build
# Editor / tooling
.cursor
.vscode
# uv lock file (not needed in Docker, causes confusion)
uv.lock
# Test venvs created during debugging
venv_test*
.tmp_venv
# Scratch test scripts
test_pip*.sh
req_test*.txt
get_logs.py
# Large temp dirs
scratch/
|