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

Efficientdet #250

Merged
merged 29 commits into from
Jan 27, 2023
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e62e9d7
Input, conv, squeeze excitation and output blocks of EfficientNet mod…
Manojkumarmuru Jan 25, 2023
24bbf15
Conv2D() function wrapped inside MB_conv2D() function
Manojkumarmuru Jan 25, 2023
5e11969
SE_ratio renamed to excite_ratios
Manojkumarmuru Jan 25, 2023
b28dbf5
repeat_MB() function refactored
Manojkumarmuru Jan 25, 2023
7014478
Converted to pep8 standard
Manojkumarmuru Jan 25, 2023
8dc3404
Docstrings updated
Manojkumarmuru Jan 25, 2023
bc0fd6d
Ascii diagram refined
Manojkumarmuru Jan 25, 2023
5a29084
Static arguments taken out of for loop inside build_head_conv2D() fun…
Manojkumarmuru Jan 26, 2023
74fa38c
Bounding box visualization reverted to old version
Manojkumarmuru Jan 26, 2023
786904d
demo.py working for old weights- first version
Manojkumarmuru Jan 26, 2023
3c54bd0
duplicate efficientdet_portprocess() function removed
Manojkumarmuru Jan 26, 2023
43b8992
Changed DetectSingleShotEfficientDet according to the working version…
Manojkumarmuru Jan 26, 2023
1d7b02d
Basic cleanup
Manojkumarmuru Jan 26, 2023
b609ad7
Some cleanup
Manojkumarmuru Jan 26, 2023
043b589
Some cleanup
Manojkumarmuru Jan 26, 2023
04b5e3c
Converted to pep8 standard
Manojkumarmuru Jan 26, 2023
abb74af
draw.py removed as it is no longer used for time being
Manojkumarmuru Jan 26, 2023
74e5739
Converted to pep8 standard
Manojkumarmuru Jan 26, 2023
525b47f
Incorrect exception message corrected
Manojkumarmuru Jan 26, 2023
bfbe4dc
EFFICIENTDETD0COCO made
Manojkumarmuru Jan 26, 2023
987b000
Basic cleanup
Manojkumarmuru Jan 26, 2023
580d3f7
EFFICIENTDETD0VOC added
Manojkumarmuru Jan 26, 2023
822ca1b
Converted to pep8 standard
Manojkumarmuru Jan 26, 2023
2c32b09
demo_video.py added
Manojkumarmuru Jan 26, 2023
d2f5ca9
Docstrings updated
Manojkumarmuru Jan 27, 2023
5ef312f
Minor refactoring
Manojkumarmuru Jan 27, 2023
2c1f3ab
EFFICIENTDETCOCO class added for EfficientDet models D0-D7
Manojkumarmuru Jan 27, 2023
bad21ae
get_class_names() function call replaced with self.class_names inside…
Manojkumarmuru Jan 27, 2023
7d3cacb
draw.py and DrawBoxes2d() class restored
Manojkumarmuru Jan 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Some cleanup
  • Loading branch information
Manojkumarmuru committed Jan 26, 2023
commit 043b58921764a39c64e651c96c2835211fbcedc7
1 change: 1 addition & 0 deletions examples/efficientdet/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
B_IMAGENET_STDEV, G_IMAGENET_STDEV, R_IMAGENET_STDEV = 57.3, 57.1, 58.4
RGB_IMAGENET_STDEV = (R_IMAGENET_STDEV, G_IMAGENET_STDEV, B_IMAGENET_STDEV)


class DetectSingleShotEfficientDet(Processor):
"""Single-shot object detection prediction.

Expand Down