diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76f4c78 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +htmlcov/ + +# Virtual environments +.venv/ +venv/ +env/ + +# Jupyter +.ipynb_checkpoints/ + +# Experiment outputs +runs/ +outputs/ +artifacts/ +checkpoints/ +wandb/ +tensorboard/ + +# Data +data/ +datasets/ + +# OS and editor files +.DS_Store +Thumbs.db +.idea/ +.vscode/ + +# Logs +*.log |
