Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,37 @@ target/
profile_default/
ipython_config.py

# Model files and weights
*.pt
*.pth
*.onnx
*.tflite
*.pb
*.trt
*.engine
*.weights
*.h5
*.hdf5
*.pkl
*.model
*.bin
*.mlmodel
*.caffemodel
*.prototxt
*.params
*.json
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we might want to include some json config files in the package (and subpackages), so let's not ignore *.json.
Plus if there are some config files related to models that might get downloaded, hopefully they'll all be in some known directory, and that dir can be added to gitignore.

*.ckpt*
*.meta
*.index
*.data*
*.pb
*.savedmodel

# prediction plots
saved_plots/

# training runs
runs/
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
Expand Down
File renamed without changes.
9 changes: 9 additions & 0 deletions mindtrace/models/mindtrace/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""
Mindtrace Models Package

This package contains various computer vision models including YOLO implementations.
"""

from .standalone import YOLOModel

__all__ = ["YOLOModel"]
Loading
Loading