diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-05-28 22:45:41 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-05-28 22:45:41 -0500 |
| commit | 4855e065e8426244035b5ef9c0b4a4b74da163ce (patch) | |
| tree | 454a964004a8d75804c5bef2908c6cbc3e07958d /.gitignore | |
Initialize project notes
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 |
