Skip to content

Commit

Permalink
Merge pull request #12 from Adenialzz/main
Browse files Browse the repository at this point in the history
Fix string error when loading clip models.
  • Loading branch information
fkodom authored Nov 7, 2022
2 parents 4993f4c + 2f7f2fa commit f2df8ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clip_text_decoder/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ class VisionBackbones(Enum):
blip_base: str = "blip:base"
clip_rn50: str = "clip:RN50"
clip_rn101: str = "clip:RN101"
clip_vit_b32: str = "clip:VIT-B/32"
clip_vit_b16: str = "clip:VIT-B/16"
clip_vit_l14: str = "clip:VIT-L/14"
clip_vit_l14_336px: str = "clip:VIT-L/14@336px"
clip_vit_b32: str = "clip:ViT-B/32"
clip_vit_b16: str = "clip:ViT-B/16"
clip_vit_l14: str = "clip:ViT-L/14"
clip_vit_l14_336px: str = "clip:ViT-L/14@336px"

@classmethod
def list(cls):
Expand Down

0 comments on commit f2df8ed

Please sign in to comment.