Closed sineeli closed 3 months ago
Can we make last dimension of the roi_generator.py
boxes output have fixed 4 as dimension, any suggestion on how to make it possible ?
Ref:
@VarunS1997 Review for any corrections are fixes required from based code.
Thanks!
Hey @sineeli this is so cool! Thanks for taking this up. It was a long time ago and unfortunately I would not be able to give you a thorough review.
What I understand should be green flags are:
model.fit()
API and train on PASCAL VOCLast I worked on it I could not get every component to comply with the Functional API. If you got that part sorted, you are good to go ^_^
Closes #2012
Hey @sineeli this is so cool! Thanks for taking this up. It was a long time ago and unfortunately I would not be able to give you a thorough review.
What I understand should be green flags are:
- The model should follow the Functional API of Keras
- It should use the
model.fit()
API and train on PASCAL VOCLast I worked on it I could not get every component to comply with the Functional API. If you got that part sorted, you are good to go ^_^
Closes #2012
Yes trying to make it functional, hopefully it will workout!
There are two implementations as per torch:
fasterrcnn_resnet50_fpn
- Present Keras implementation similar to this config
fasterrcnn_resnet50_fpn_v2
- Improved Configuration.
@sineeli you will need to run shell/api_gen.sh
, shell/format.sh
and shell/lint.sh
to resolve all the code format errors.
Excellent work!! Thanks Siva!!
What does this PR do?
Port legacy Faster R-CNN to Keras 3
Fix minor bug in ROI Align, make sure to build the shapes for each layer components.
The present PR is modified code of Updating FasterRCNN to use Task API contributed by @ariG23498. Please @ariG23498 any suggestions form your side are appreciated.