Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com>
  • Loading branch information
KernFerm authored Sep 4, 2024
1 parent d2e22c9 commit 0159f78
Showing 1 changed file with 45 additions and 33 deletions.
78 changes: 45 additions & 33 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit 0159f78

Please sign in to comment.