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

How to disable fastreid and mmdet? #251

Open
liyu711 opened this issue Jul 21, 2022 · 4 comments
Open

How to disable fastreid and mmdet? #251

liyu711 opened this issue Jul 21, 2022 · 4 comments

Comments

@liyu711
Copy link

liyu711 commented Jul 21, 2022

Even if I don't use the --fastreid and --mmdet it is still giving me a lot of bugs such as no module named mmdet.
How to solve this?

@ASCII-cxy
Copy link

I met the same probelm. How do you solve it?

@ChengAoZong
Copy link

i met the same problem i don't know how to solve it. need i to install the mmdetection?

@ChengAoZong
Copy link

i have solved this problem. when you do not use fastreid and mmdetc, you need comment the import code just like 'from fastreid.config import get_cfg'

@li-wenzhan
Copy link

You can try to comment out the code in "featrue_extractor.py" related to importing "fastreid", and replace the code in "deepsort.py" from:
parser.add_argument("--fastreid", action="store_true")
parser.add_argument("--mmdet", action="store_true")
to:
parser.add_argument("--fastreid", action="store_true", default=False)
parser.add_argument("--mmdet", action="store_true", default=False)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants