-
Notifications
You must be signed in to change notification settings - Fork 89
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
inference.py, eval.py, demo.py all buggy! #5
Comments
can you give me the error information. @vinjohn |
for R2CNN, everything is fine. the build_whole_detection_network need 3 input and return 6 output. det_net.build_whole_detection_network(input_img_batch=img_batch, gtboxes_h_batch=None, gtboxes_r_batch=None) however, the implementation of build_whole_detection_network in libs/networks/build_whole_network.py: build_whole_detection_network(self, input_img_batch, gtboxes_batch) the exact error message I get is: |
please update your code and try again. @vinjohn |
By the way, I have another question, please help. The default config for DOTA with base anchor = 256, anchor scales = [0.0625, ..., 2.0], anchor ratios = [1, ... ,1/7] Could you please give me some instructions on config these three parameters? |
This time the inference is going well, but I think a nms process should be added, anyway, I add it myself. The anchor scale question, please help, thanks a million! |
base anchor * anchor scales = [16, 32, 64, 128, 256, 512] as the base_anchor_size_list. Anchor ratios = [1, ... ,1/7] controls the shape of the anchor under the same base. roi_scale_factors controls the value of predict offset in a small range. @vinjohn |
Hi, the inference.py, eval.py and demo.py are all buggy in this repo, would you please update a version which can really work?
The train.py is fine.
The text was updated successfully, but these errors were encountered: