Why DeepSort was removed?
Hi, i saw from this [notebook example](https://github.com/roboflow/notebooks/blob/main/notebooks/how-to-track-objects-with-deepsort-tracker.ipynb) that there used to be trackers[deepsort] package from pypi?
```py
!pip install -q inference-gpu
!pip install -q trackers[deepsort]
!pip install -q supervision==0.27.0rc1
```
```py
from inference import get_model
from trackers import DeepSORTFeatureExtractor, DeepSORTTracker
model = get_model("rfdetr-medium")
feature_extractor = DeepSORTFeatureExtractor.from_timm(
model_name="mobilenetv4_conv_small.e1200_r224_in1k")
tracker = DeepSORTTracker(feature_extractor=feature_extractor)
```
But I no longer see the deep sort tracker on trackers pypi. May I know why it was removed and whether it will be added back?
0 条评论