-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21acc17
commit f0af246
Showing
2 changed files
with
3 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from mmdet.models.task_modules import AssignResult, BaseAssigner | ||
|
||
from .assigners import HungarianAssigner3D | ||
from .coders import NMSFreeCoder | ||
from .match_cost import BBox3DL1Cost, FocalLossCost, IoUCost | ||
|
||
__all__ = [ | ||
'BaseAssigner', 'AssignResult', 'HungarianAssigner3D', 'NMSFreeCoder', | ||
'BBox3DL1Cost', 'IoUCost', 'FocalLossCost' | ||
'HungarianAssigner3D', 'NMSFreeCoder', 'BBox3DL1Cost', 'IoUCost', | ||
'FocalLossCost' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from mmdet.models.task_modules import (AssignResult, BaseAssigner, | ||
MaxIoUAssigner) | ||
|
||
from .hungarian_assigner_3d import HungarianAssigner3D | ||
|
||
__all__ = [ | ||
'BaseAssigner', 'MaxIoUAssigner', 'AssignResult', 'HungarianAssigner3D' | ||
] | ||
__all__ = ['HungarianAssigner3D'] |