Skip to content

Commit

Permalink
Actualize pose estimatino zoo. (#1114)
Browse files Browse the repository at this point in the history
* Actualize pose estimatino zoo.
Remove old models that are not supported and we don't provide recipe & weights for them

* Actualize pose estimatino zoo.
Remove old models that are not supported and we don't provide recipe & weights for them

---------

Co-authored-by: Shay Aharon <80472096+shaydeci@users.noreply.github.com>
  • Loading branch information
BloodAxe and shaydeci authored Jun 5, 2023
1 parent b4eec92 commit f46e756
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 111 deletions.
68 changes: 33 additions & 35 deletions documentation/source/model_zoo.md

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions src/super_gradients/common/object_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,6 @@ class Models:

DEKR_CUSTOM = "dekr_custom"
DEKR_W32_NO_DC = "dekr_w32_no_dc"
POSE_PP_YOLO_L = "pose_ppyolo_l"
POSE_DDRNET_39 = "pose_ddrnet39"
YOLO_NAS_S = "yolo_nas_s"
YOLO_NAS_M = "yolo_nas_m"
YOLO_NAS_L = "yolo_nas_l"
Expand Down

This file was deleted.

4 changes: 0 additions & 4 deletions src/super_gradients/training/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@
from super_gradients.training.models.segmentation_models.ddrnet_backbones import DDRNet39Backbone

# Pose estimation
from super_gradients.training.models.pose_estimation_models.pose_ppyolo import PosePPYoloL
from super_gradients.training.models.pose_estimation_models.pose_ddrnet39 import PoseDDRNet39
from super_gradients.training.models.pose_estimation_models.dekr_hrnet import DEKRPoseEstimationModel, DEKRW32NODC

# KD
Expand Down Expand Up @@ -328,8 +326,6 @@ def inner(*args, **kwargs):
"STDC2Classification",
"STDCSegmentationBase",
"CustomSTDCSegmentation",
"PosePPYoloL",
"PoseDDRNet39",
"DEKRPoseEstimationModel",
"DEKRW32NODC",
"KDModule",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from .rescoring_net import PoseRescoringNet
from .dekr_hrnet import DEKRPoseEstimationModel, DEKRW32NODC
from .pose_ddrnet39 import PoseDDRNet39

__all__ = ["PoseRescoringNet", "DEKRPoseEstimationModel", "DEKRW32NODC", "PoseDDRNet39"]
__all__ = ["PoseRescoringNet", "DEKRPoseEstimationModel", "DEKRW32NODC"]

This file was deleted.

This file was deleted.

0 comments on commit f46e756

Please sign in to comment.