Skip to content

Commit

Permalink
Keypoint M predefined model (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSabadin authored Nov 19, 2024
1 parent 5b28de2 commit 523b775
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ def get_variant(variant: VariantLiteral) -> KeypointDetectionVariant:
backbone_params={"variant": "n"},
neck_params={"variant": "n", "download_weights": True},
),
"medium": KeypointDetectionVariant(
backbone="EfficientRep",
backbone_params={"variant": "s"},
neck_params={"variant": "s", "download_weights": True},
),
"heavy": KeypointDetectionVariant(
backbone="EfficientRep",
backbone_params={"variant": "l"},
Expand Down

0 comments on commit 523b775

Please sign in to comment.