67 lines
549 B
Plaintext
67 lines
549 B
Plaintext
|
|
# Project artifacts
|
|
GPT-2/
|
|
datasets/
|
|
checkpoints/
|
|
log/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
|
|
# Data & weights
|
|
*.npz
|
|
*.npy
|
|
*.pkl
|
|
*.pt
|
|
*.pth
|
|
*.ckpt
|
|
*.bin
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# VSCode
|
|
.vscode/
|
|
|
|
# JetBrains / IDEs
|
|
.idea/
|
|
.fleet/
|
|
.vs/
|
|
*.code-workspace
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python build & test
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
.cache/
|
|
|
|
# Editors swap/history
|
|
*.swp
|
|
*.swo
|
|
.history/
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|