Files
super-mario/.gitignore
ROOG 2960ac1df5 - Implemented policy_utils.py with helper functions for action selection, including epsilon-greedy support.
- Updated `requirements.txt` to relax PyTorch version constraint for better GPU compatibility.
- Added detailed GPU setup instructions, new device fallback options, and command examples to `README.md`.
- Developed a new script `plot_model_max_x_trend.py` for visualizing training trends, generating HTML/Markdown reports.
2026-02-13 16:11:38 +08:00

46 lines
431 B
Plaintext

# macOS
.DS_Store
# Python cache / build
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.eggs/
dist/
build/
# Virtual environments
.venv/
venv/
env/
*/.venv/
# Logs / test / tooling
*.log
.cache/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# Jupyter
.ipynb_checkpoints/
# RL artifacts
artifacts/
*/artifacts/
# TensorBoard / checkpoints / models
runs/
checkpoints/
models/
videos/
# IDE
.vscode/
.idea/