From 0159f7868bcbb26fa8acb8c3ac6e0ca2833598fd Mon Sep 17 00:00:00 2001 From: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com> Date: Wed, 4 Sep 2024 01:46:01 -0400 Subject: [PATCH] Update .gitignore Signed-off-by: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com> --- .gitignore | 78 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index 9da6eed..de1b9fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1,59 @@ -# Byte-compiled / optimized / DLL files +# Python cache files __pycache__/ -*.py[cod] -*$py.class +*.pyc +*.pyo -# Log files -*.log - -# Virtual environment +# Environment or virtual environment directories +env/ venv/ ENV/ -env/ -.venv/ -.ENV/ -env.bak/ -venv.bak/ - -# CSV files generated by the application -*.csv -# Tkinter-specific temporary files -*.tcl -*.tk - -# IDE-specific files -.vscode/ -.idea/ +# Model files (e.g., PyTorch, ONNX) +*.pt +*.onnx # OS-specific files .DS_Store Thumbs.db -# Screenshots folder -screenshots/ +# Logs +*.log -# Models folder -models.zip -models/ +# Ignore database files +*.sqlite3 + +# Ignore Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# Ignore any other temporary files or build directories +build/ +dist/ +*.egg-info/ + +# Ignore VSCode workspace files +.vscode/ + +# Ignore images generated by OpenCV (if saving frames to disk) +*.jpg +*.jpeg +*.png +*.bmp + +# Ignore output folders if any +output/ +results/ + +# Ignore Tkinter cache +*.tcl +*.tk -# Where to put models folder -where_to_put_models/ +# Ignore specific files in the project +models/custom_model.onnx +output_frame.jpg -# PDF files -*.pdf +# Ignore batch script +install_pytorch.bat -# Notes file -notes.txt +# Ignore Rust target and debug directories +target/ +debug/