Providing a Proposal File
See original GitHub issueHi there,
I was able to train a mask RCNN on my data set but run into problems when I run
python2 tool/test_net.py --cfg config/12_2017_baselines/MY_VERSION_OF_mask_rcnn_R-50-C4_sx.yaml
The error I get is
cfg.TEST.PROPOSAL_FILE = cfg.TEST.PROPOSAL_FILES[i] IndexError: tuple index out of range
I assume this arises because I did not specify a proposal file. My question is: in which format can I provide a proposal file for a private dataset?
Thanks, Christian
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
How to Write a Proposal and Get What You Want (Free ...
Writing a Proposal: Step-by-Step Guide ; 1. Planning: ; 2. Sketch your problem or point of improvement ; 3. Sketch your proposed solution...
Read more >How to Write a Winning Business Proposal [Updated 2021]
A winning business proposal generally begins with an in-depth findings discussion call or meeting. If possible, the writer should directly ...
Read more >How to Write a Business Proposal [Examples + Template]
This is where you provide a summary of the issue impacting the potential client. It provides you with the opportunity to show them...
Read more >How to Write a Project Proposal (Steps & Template Included)
Learn how to a stellar project proposal. See the bets format, typical sections, best practices and even get a free template.
Read more >How to write a proposal email - Flowrite
Our business proposal email samples and a proposal email template will ... Proposal emails are typically actioned at stage 2 and provide the ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @chrisby, we expect the proposals for a dataset to be provided in a
pkl
file that contains a serializedproposals
dictionary with the following entries:where
It may be instructive to download one of the proposal files from the Model Zoo and inspect it interactively. You may also find it useful to look at
_add_proposals_from_file
to see how proposals get loaded from file andrpn_generator
to see how RPN proposals get computed and stored to apkl
file.If you require proposals for COCO classes, you can use one of the RPN models from the Model Zoo to compute (and store in the expected format) the proposals for your dataset.
We plan to add the information about the proposals file format to the documentation in the future. In the meantime, let us know if the above is unclear.
Thanks, that’s already very helpful! I think I will use one of the baseline RPNs to compute the proposal file an subsequently link it to my dataset.