-
Notifications
You must be signed in to change notification settings - Fork 122
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
applying Yolo in place of Faster RCNN #221
Comments
I'm doing something similar with DETR. How do you compute pseudo bbox for regression loss? As far as I know, a score should be computed by applyning the vaiance between bbox outputs from several auged images in teacher. For now, I'm skipping this step by directly filtering the proposals by regression score threshold. |
I have to embed the ssod in mmcv. whenever i made changes in softTeacher file i have to add it in mmcv |
if you execute train.py from ssod you don't need to embed it in mmcv, the decorator @DETECTORS.register_module() does it automatically. |
Can you please elaborate what do you mean by "execute train.py from ssod"? |
i mean the script train.py that is provided in tools directory from this repo. You don't need to embed anything to mmcv, from my experience modifying softTeacher file is enough since you are registering the module by the decorator. |
apt update python -m pip install 'git+https://github.com/tahirashehzadi/Semi-Supervised-Floor-Plan-Detection.git' |
Why are you doing this You first need to train it with your dataset and after that you can perform inference following the instructions provided in readme file. |
Can I use this code base (python -m pip install 'git+https://github.com/tahirashehzadi/Semi-Supervised-Floor-Plan-Detection.git') to replace the backbone with a one-stage one? @tahirashehzadi |
Have you applied deter? |
sure |
I'm solving some bugs in my code and I can upload a first version to train it using DETR. You should check DETR config files from mmdetection if you want to apply it. Anyways I will post an answer to this issue when i have it working. |
Hi @ericpresas, I'm working on apply softTeacher with Deformable DETR. Thanks for your folked version, it really helps me a lot. |
Hi @1224wxwx, as you can see my forked version is not finished yet. As I said I'm solving some bugs and I will upload an updated version this month. If you have some ideas how to implement the calculation of regression and classification loss for our case, let me know :) |
Hi @ericpresas , thanks for your replay. |
Nice!! I think it should work. Thank you! |
Hi,
I want to apply yolo detector. I used single stage functions in softTeacher.
I did modifications for sible stage detector in softTeacher file.
After modication do i need to reinstall mmcv again?
The text was updated successfully, but these errors were encountered: