-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update HF model naming convention (#72)
Make model naming conventions consistent with the dataset naming conventions.
- Loading branch information
1 parent
df4a8ef
commit 219f89f
Showing
12 changed files
with
14 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "clip", | ||
"title_in_source": "openai/clip-vit-large-patch14-336" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "fashion", | ||
"title_in_source": "patrickjohncyh/fashion-clip" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "plip", | ||
"title_in_source": "vinid/plip" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "pubmed", | ||
"title_in_source": "flaviagiammarino/pubmed-clip-vit-base-patch32" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "rsicd", | ||
"title_in_source": "flax-community/clip-rsicd" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "siglip_large", | ||
"title_in_source": "google/siglip-large-patch16-256" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "siglip_small", | ||
"title_in_source": "google/siglip-base-patch16-224" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "street", | ||
"title_in_source": "geolocal/StreetCLIP" | ||
} |
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,5 +1,5 @@ | ||
{ | ||
"model_type": "ClosedCLIPModel", | ||
"model_type": "HFModel", | ||
"title": "tinyclip", | ||
"title_in_source": "wkcn/TinyCLIP-ViT-40M-32-Text-19M-LAION400M" | ||
} |
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,3 +1,3 @@ | ||
from tti_eval.model.types.hugging_face_clip import ClosedCLIPModel | ||
from tti_eval.model.types.hugging_face import HFModel | ||
from tti_eval.model.types.local_clip_model import LocalCLIPModel | ||
from tti_eval.model.types.open_clip_model import OpenCLIPModel |
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