You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, skellytracker is a relatively heavyweight package (2.4 GB total, 1.3 GB excluding PySide dependency). As we add more tracking options to it, it will continue to grow. To do even simple tasks, like import the model info into a downstream project, you need to download the entire tracking suite.
We can mitigate this problem by using dependency extras for each major package. This would look like: pip install skellytracker -> just the core skellytracker package, no added tracking packages pip install skellytracker[mediapipe] -> core skellytracker package and mediapipe, no YOLO (or any other trackers we add) pip install skellytracker[YOLO] -> core skellytracker package and YOLO
We can also optionally add an all extra that downloads every tracking package, for ease of use when the full package is desired. pip install skellytracker[all] -> installs everything, core package and all trackers.
The text was updated successfully, but these errors were encountered:
Currently, skellytracker is a relatively heavyweight package (2.4 GB total, 1.3 GB excluding PySide dependency). As we add more tracking options to it, it will continue to grow. To do even simple tasks, like import the model info into a downstream project, you need to download the entire tracking suite.
We can mitigate this problem by using dependency extras for each major package. This would look like:
pip install skellytracker
-> just the core skellytracker package, no added tracking packagespip install skellytracker[mediapipe]
-> core skellytracker package and mediapipe, no YOLO (or any other trackers we add)pip install skellytracker[YOLO]
-> core skellytracker package and YOLOWe can also optionally add an
all
extra that downloads every tracking package, for ease of use when the full package is desired.pip install skellytracker[all]
-> installs everything, core package and all trackers.The text was updated successfully, but these errors were encountered: