Conversation
|
|
||
| tracker = SORTTracker() | ||
| model = get_model(model_id="yolov11m-640") | ||
| model = get_model(model_id="rfdetr-base") |
There was a problem hiding this comment.
We are actually going to deprecate RF-DETR Base checkpoint in near future. Let's suggest users RF-DETR Medium as default model.
| reid_model = ReIDModel.from_timm("resnetv2_50.a1h_in1k") | ||
| tracker = DeepSORTTracker(reid_model=reid_model) | ||
| model = get_model(model_id="yolov11m-640") | ||
| model = get_model("rfdetr-base") |
There was a problem hiding this comment.
We are actually going to deprecate RF-DETR Base checkpoint in near future. Let's suggest users RF-DETR Medium as default model.
| reid_model = ReIDModel.from_timm("resnetv2_50.a1h_in1k") | ||
| tracker = DeepSORTTracker(reid_model=reid_model) | ||
| model = get_model(model_id="yolov11m-640") | ||
| model = get_model(model_id="rfdetr-base") |
There was a problem hiding this comment.
We are actually going to deprecate RF-DETR Base checkpoint in near future. Let's suggest users RF-DETR Medium as default model.
|
|
||
| tracker = SORTTracker() | ||
| model = get_model(model_id="yolov11m-640") | ||
| model = get_model(model_id="rfdetr-base") |
There was a problem hiding this comment.
We are actually going to deprecate RF-DETR Base checkpoint in near future. Let's suggest users RF-DETR Medium as default model.
| <td>2016</td> | ||
| <td>✅</td> | ||
| <td><a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/how-to-track-objects-with-sort-tracker.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> | ||
| <td><a href="https://colab.research.google.com/drive/1_fYrMXlh8At5U6KI8yhJlFeW-WXZnBU4?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> |
There was a problem hiding this comment.
We should never direct people to colabs that exist only on gdrive. Let's update the orginal colabs to make the use RF-DETR Merium.
There was a problem hiding this comment.
i dont have editor access to that colabs
There was a problem hiding this comment.
| <td>2017</td> | ||
| <td>✅</td> | ||
| <td><a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/how-to-track-objects-with-deepsort-tracker.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> | ||
| <td><a href="https://colab.research.google.com/drive/1-dhGV1dbfv1U_7c3rrH0rjKZDGxix8D-?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> |
There was a problem hiding this comment.
We should never direct people to colabs that exist only on gdrive. Let's update the orginal colabs to make the use RF-DETR Merium.
| from rfdetr import RFDETRBase | ||
|
|
||
| tracker = SORTTracker() | ||
| model = RFDETRBase(device="cuda") |
There was a problem hiding this comment.
Let's update RFDETRBase to RFDETRMedium.
|
I left my comments. Also wherever we use |
| <td>2016</td> | ||
| <td>✅</td> | ||
| <td><a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/how-to-track-objects-with-sort-tracker.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> | ||
| <td><a href="https://colab.research.google.com/drive/1_fYrMXlh8At5U6KI8yhJlFeW-WXZnBU4?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="colab"></a></td> |
There was a problem hiding this comment.
in general the only place where we use YOLO11 over RF-DETR is in ultralytics integration example |
# Conflicts: # docs/trackers/core/deepsort/tracker.md # docs/trackers/core/reid/reid.md
What does this PR do?
Changed docs to use RF-DETR as first option.
Type of Change