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 #269

Merged
merged 28 commits into from
Feb 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
567a0e2
Global imports from paz now made relative
Manojkumarmuru Feb 20, 2023
f3c93f9
efficientdet_test imports updated
Manojkumarmuru Feb 20, 2023
1083b1f
Imports in test made as how it is in ssd300_test.py
Manojkumarmuru Feb 20, 2023
da50904
image_with_multiple_objects now gets automatically downloaded
Manojkumarmuru Feb 20, 2023
5df6334
Default preprocess and postprocess for efficientdet called when passe…
Manojkumarmuru Feb 20, 2023
147f3dc
Function process_outputs() renamed to change_box_coordinates()
Manojkumarmuru Feb 20, 2023
dca5a35
detection.py inside examples/efficientdet put inside paz
Manojkumarmuru Feb 20, 2023
16b023e
Documentation updated
Manojkumarmuru Feb 20, 2023
b56ca8b
efficientdet models now load inside examples/efficientdet/demo.py fro…
Manojkumarmuru Feb 20, 2023
3faae92
detection.py removed from examples/efficientdet
Manojkumarmuru Feb 20, 2023
5722bbe
Efficientdet inference test added inside tests/paz/pipelines
Manojkumarmuru Feb 21, 2023
e96957d
Unused import removed
Manojkumarmuru Feb 21, 2023
c977340
Ground truth bounding boxes for efficientdet passed to the unit test …
Manojkumarmuru Feb 21, 2023
6682898
Error with variable name corrected
Manojkumarmuru Feb 21, 2023
6f98552
Missing score_thresh, and nms_thresh passed to detector pipeline
Manojkumarmuru Feb 21, 2023
2b89ed0
printing efficientdet inference output for debugging
Manojkumarmuru Feb 21, 2023
5b588fd
Target boxes modified due to difference in output with machine
Manojkumarmuru Feb 21, 2023
1b70f59
Target scores of certain classes changed
Manojkumarmuru Feb 21, 2023
98e18c2
Scores of certain classes changed
Manojkumarmuru Feb 21, 2023
273ad80
Scores of certain class changed
Manojkumarmuru Feb 21, 2023
12603ef
Scores of certain target class changed
Manojkumarmuru Feb 21, 2023
32d3f81
Target scores of certain classes changed
Manojkumarmuru Feb 21, 2023
2248b5b
Target scores of certain classed changed
Manojkumarmuru Feb 21, 2023
f7db14f
Target scores of certain classes changed
Manojkumarmuru Feb 21, 2023
a9adcb3
Merge branch 'master' of github.com:Manojkumarmuru/paz into efficientdet
Manojkumarmuru Feb 21, 2023
6c8f66f
Image used in demo.py is now automatically downloaded from the given URL
Manojkumarmuru Feb 21, 2023
cae9aff
change_box_coordinates moved to backend/boxes.py
Manojkumarmuru Feb 21, 2023
59c954a
Efficientdet loaded from paz/models
Manojkumarmuru Feb 21, 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
Imports in test made as how it is in ssd300_test.py
  • Loading branch information
Manojkumarmuru committed Feb 20, 2023
commit 1083b1fcc82411da4b6f664c611818f6a9694c6c
8 changes: 4 additions & 4 deletions tests/paz/models/detection/efficientdet/efficientdet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
from keras.utils.layer_utils import count_params
from tensorflow.keras.layers import Input
from tensorflow.keras.utils import get_file
from .....paz.models.detection.efficientdet import (
from paz.models.detection.efficientdet import (
EFFICIENTDETD0, EFFICIENTDETD1, EFFICIENTDETD2, EFFICIENTDETD3,
EFFICIENTDETD4, EFFICIENTDETD5, EFFICIENTDETD6, EFFICIENTDETD7,
EfficientNet_to_BiFPN, BiFPN)
from .....paz.models.detection.efficientdet.efficientnet import (
from paz.models.detection.efficientdet.efficientnet import (
EFFICIENTNET, apply_drop_connect, conv_block, MBconv_blocks)
from .....paz.models.detection.efficientdet.efficientdet_blocks import (
from paz.models.detection.efficientdet.efficientdet_blocks import (
ClassNet, BoxesNet)
from .....paz.models.detection.efficientdet.layers import FuseFeature
from paz.models.detection.efficientdet.layers import FuseFeature


@pytest.fixture
Expand Down