-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'DA-52-unbiased-pl' into DA-52-cos-score-weighting-poole…
…d-refactor # Conflicts: # pcdet/models/detectors/pv_rcnn_ssl.py # pcdet/models/roi_heads/pvrcnn_head.py # pcdet/models/roi_heads/roi_head_template.py # pcdet/utils/__init__.py # tools/cfgs/kitti_models/pv_rcnn_ssl_60.yaml
- Loading branch information
Showing
9 changed files
with
1,020 additions
and
9 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from .freematch import FreeMatchThreshold | ||
from .adamatch import AdaMatchThreshold | ||
from .consistant_teacher import AdaptiveThresholdGMM | ||
from .softmatch import SoftMatchThreshold | ||
|
||
__all__ = { | ||
'FreeMatchThreshold': FreeMatchThreshold, | ||
'AdaMatchThreshold': AdaMatchThreshold, | ||
'AdaptiveThresholdGMM': AdaptiveThresholdGMM, | ||
# 'SoftMatchThreshold': SoftMatchThreshold # not finalised yet | ||
} | ||
|
||
|
||
def build_thresholding_method(tag, dataset, config): | ||
model = __all__[config.ROI_HEAD.ADAPTIVE_THRESH_CONFIG.NAME]( | ||
tag=tag, dataset=dataset, config=config | ||
) | ||
|
||
return model |
Oops, something went wrong.