Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Language-based object detectors (GLIP, Grounding DINO) support for MMDetection #1003

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8212420
added support for language-based object detector (GLIP, GDino)
Mar 7, 2024
7ee995f
added test for GLIP and GLIP download utils
Mar 7, 2024
4e47481
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Apr 8, 2024
1883575
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Apr 8, 2024
ddf3b7f
Added custom_entities argument + updated mmdetection version in README
Apr 9, 2024
e84f612
added demo for MMDet language vision models (GLIP)
Apr 9, 2024
50108f1
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Apr 22, 2024
8916fe2
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Apr 29, 2024
d5f1e44
fixed styling
May 6, 2024
aafda9f
update mmdet version in tests
fcakyon May 20, 2024
5720e24
chore: Update MMDetection and OpenMIM versions in CI workflows
fcakyon May 20, 2024
57f4096
chore: Update MMDetection and OpenMIM versions in CI workflows
fcakyon May 20, 2024
3bd1013
chore: Update MMDetection and OpenMIM versions in CI workflows
fcakyon May 20, 2024
a82a398
add nltk dependency for glip+sahi
fcakyon May 20, 2024
2ba1ea8
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon May 20, 2024
d8de866
fixed nltk based failure
May 27, 2024
c21032b
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Jun 2, 2024
26c2f43
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Jun 2, 2024
32e9bdb
Solved merge conflict caused by mmdet demo
Jul 19, 2024
c2311b4
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Aug 9, 2024
d8b8e2f
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Aug 27, 2024
733edb7
fix nltk error
fcakyon Aug 27, 2024
3d20f32
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Aug 27, 2024
1e0f25e
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Nov 22, 2024
d67bcb4
Update tests/test_mmdetectionmodel.py
fcakyon Nov 22, 2024
4163e0f
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Nov 22, 2024
efb01f1
Merge branch 'main' into MMdet-Language-Vision-models-support
fcakyon Jan 13, 2025
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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@ jobs:

- name: Install MMDetection(3.0.0) with MMCV(2.0.0)
run: |
pip install mmengine==0.7.3
pip install mmcv==2.0.0 -f https://download.openmmlab.com/mmcv/dist/cpu/torch1.13.0/index.html
pip install mmdet==3.0.0
pip install mmengine==0.7.3 mmdet==3.3.0 nltk

- name: Install YOLOv5(7.0.13)
run: >
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/package_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ jobs:

- name: Install MMDetection(3.0.0) with MMCV(2.0.0)
run: |
pip install mmengine==0.7.3
pip install mmcv==2.0.0 -f https://download.openmmlab.com/mmcv/dist/cpu/torch1.13.0/index.html
pip install mmdet==3.0.0
pip install mmengine==0.7.3 mmdet==3.3.0 nltk

- name: Install YOLOv5(7.0.13)
run: >
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ pip install ultralytics==8.0.207

```console
pip install mim
mim install mmdet==3.0.0
mim install mmdet==3.3.0
```

- Install your desired detection framework (detectron2):
Expand Down
Loading
Loading