43 lines
347 B
Plaintext
43 lines
347 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env/
|
|
|
|
# PyTorch model checkpoints
|
|
*.pth
|
|
|
|
# Images
|
|
step_response.png
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# TensorBoard
|
|
runs/
|
|
events.out.tfevents.*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|