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

Identity box coder, similarity calculator, target assigner #8962

Merged
merged 48 commits into from
Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
0006ba7
target assigner mods
kmindspark Jul 24, 2020
c99e578
progress on pr
kmindspark Jul 24, 2020
c594cec
pr
kmindspark Jul 24, 2020
7359586
Merge remote-tracking branch 'upstream/master' into detr-push-3
kmindspark Jul 24, 2020
9bd3fe6
save progress
kmindspark Jul 24, 2020
ceb406b
ready pr
kmindspark Jul 27, 2020
c95500c
updates
kmindspark Jul 27, 2020
4753d6e
Merge remote-tracking branch 'upstream/master' into detr-push-3
kmindspark Jul 27, 2020
55db4ad
fix
kmindspark Jul 27, 2020
70cb851
fix
kmindspark Jul 27, 2020
322d444
minor style elements
kmindspark Jul 27, 2020
ba65cc7
fix tests
kmindspark Jul 28, 2020
7b165eb
fix tests
kmindspark Jul 28, 2020
3564e7c
fix
kmindspark Jul 29, 2020
a679728
fix
kmindspark Jul 29, 2020
8948ba3
fix file
kmindspark Jul 30, 2020
5f71a45
fix
kmindspark Jul 30, 2020
7723b20
fix pr
kmindspark Jul 30, 2020
980d176
fix
kmindspark Jul 30, 2020
dabfc27
fix
kmindspark Jul 30, 2020
f0bc684
fix this pr
kmindspark Jul 30, 2020
4022aae
self code-review to clean up
kmindspark Jul 30, 2020
22b5b0c
self code-review to clean up
kmindspark Jul 30, 2020
245e9d1
add detr box coder test
kmindspark Jul 31, 2020
d31aba8
using already pushed files
kmindspark Aug 7, 2020
356c98b
Merge remote-tracking branch 'upstream/master' into detr-push-3
kmindspark Aug 7, 2020
824b70f
region similarity calculator mod
kmindspark Aug 7, 2020
c8cd7d1
progress on model lib
kmindspark Aug 7, 2020
43eaeb0
remove detr lib
kmindspark Aug 7, 2020
98516e5
small fix
kmindspark Aug 7, 2020
4f7965f
remove detr lib
kmindspark Aug 7, 2020
e0b082e
fix documentation for box coder
kmindspark Aug 10, 2020
ab96cb3
separate out DETR
kmindspark Aug 11, 2020
8e77b75
remove box coders
kmindspark Aug 11, 2020
3d757d5
add line
kmindspark Aug 11, 2020
4f135c7
compress target assigner
kmindspark Aug 11, 2020
d54c86d
make suggested fixes to target assigner and similarity calculator
kmindspark Aug 11, 2020
e09e056
target assigner and similarity calculator fixes
kmindspark Aug 12, 2020
8f5ed2d
fixes to simplify
kmindspark Aug 15, 2020
656ec2a
fixes to simplify
kmindspark Aug 15, 2020
9d4b102
clean target assigner
kmindspark Aug 16, 2020
323ea89
remove detr building
kmindspark Aug 18, 2020
a6f36d2
work on cleaning up further
kmindspark Aug 18, 2020
111c9d3
target assigner test
kmindspark Aug 18, 2020
de3a34b
fix issues with target assigner for pr
kmindspark Aug 19, 2020
e350c59
fix num classes
kmindspark Aug 19, 2020
1ed7ef3
fix naming
kmindspark Aug 20, 2020
0bc599e
flip around similarity calculation
kmindspark Aug 26, 2020
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
minor style elements
  • Loading branch information
kmindspark committed Jul 27, 2020
commit 322d44441959dc50dbf46dacedc1c892d3ee26af
1 change: 1 addition & 0 deletions research/object_detection/core/box_list_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
from object_detection.utils import ops
from object_detection.utils import shape_utils


class SortOrder(object):
"""Enum class for sort order.

Expand Down
1 change: 0 additions & 1 deletion research/object_detection/core/target_assigner.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ def assign(self,
ValueError: if anchors or groundtruth_boxes are not of type
box_list.BoxList
"""

if not isinstance(anchors, box_list.BoxList):
raise ValueError('anchors must be an BoxList')
if not isinstance(groundtruth_boxes, box_list.BoxList):
Expand Down