-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bubbles The Dev <152947339+KernFerm@users.noreply.github.com>
- Loading branch information
Showing
1 changed file
with
45 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# Ignore batch script | ||
install_pytorch.bat | ||
|
||
# Notes file | ||
notes.txt | ||
# Ignore Rust target and debug directories | ||
target/ | ||
debug/ |