forked from HorizonRobotics/Sparse4D
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
12 changed files
with
1,035 additions
and
539 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
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,25 +1,34 @@ | ||
from .sparse4d import Sparse4D | ||
from .sparse4d_head import Sparse4DHead | ||
from .blocks import ( | ||
DeformableFeatureAggregation, | ||
LinearFusionModule, | ||
DepthReweightModule, | ||
SparseBox3DKeyPointsGenerator, | ||
DenseDepthNet, | ||
AsymmetricFFN, | ||
) | ||
from .instance_bank import InstanceBank | ||
from .detection3d import ( | ||
SparseBox3DDecoder, | ||
SparseBox3DTarget, | ||
SparseBox3DRefinementModule, | ||
DeformableFeatureAggregation, | ||
SparseBox3DKeyPointsGenerator, | ||
SparseBox3DEncoder, | ||
) | ||
from .decoder import SparseBox3DDecoder | ||
from .target import SparseBox3DTarget | ||
from .sparse4d_head import Sparse4DHead | ||
from .sparse4d import Sparse4D | ||
|
||
|
||
__all__ = [ | ||
"Sparse4D", | ||
"Sparse4DHead", | ||
"DeformableFeatureAggregation", | ||
"LinearFusionModule", | ||
"DepthReweightModule", | ||
"SparseBox3DKeyPointsGenerator", | ||
"DenseDepthNet", | ||
"AsymmetricFFN", | ||
"InstanceBank", | ||
"SparseBox3DDecoder", | ||
"SparseBox3DTarget", | ||
"SparseBox3DRefinementModule", | ||
"DeformableFeatureAggregation", | ||
"SparseBox3DKeyPointsGenerator", | ||
"SparseBox3DEncoder", | ||
"Sparse4DHead", | ||
"SparseBox3DTarget", | ||
"SparseBox3DDecoder", | ||
"Sparse4D", | ||
] |
Oops, something went wrong.