-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add CLIP-ViT-L-scope #1022
base: main
Are you sure you want to change the base?
add CLIP-ViT-L-scope #1022
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,6 +212,13 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = { | |
repoUrl: "https://github.com/cartesia-ai/cartesia_mlx", | ||
snippets: snippets.cartesia_mlx, | ||
}, | ||
"clip-vit-l-scope": { | ||
prettyLabel: "CLIP-ViT-L-scope", | ||
repoName: "CLIP-ViT-L-scope", | ||
repoUrl: "https://github.com/Lewington-pitsos/clipscope", | ||
filter: false, | ||
countDownloads: `path_extension:"pt"`, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By doing so, any download of any pt file in the model will count as a new download. This means that if a user downloads the full repo, we will count it as X downloads (~80?). It's ok to do so if you think users will only download files one by one depending on their use case. Another problem is that all downloads are tracked as 1 metric and you won't be able to know if users are more interested by a layer or another. A solution for this would be to create N models on the Hub (1 per layer for instance) and then create a Collection so group them all. For example you can find all models related to the Gemma scope release in this collection: https://huggingface.co/collections/google/gemma-scope-release-66a4271f6f0b4d4a9d5e04e2. A benefit of having a collection of models is that downloads will be tracked for each model individually, giving you more insights on the usage of your library. If you worry about the cost of maintaining all these repos, I'd recommend automating the upload and consistency between model cards using a script based on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Makes sense to keep |
||
}, | ||
cotracker: { | ||
prettyLabel: "CoTracker", | ||
repoName: "CoTracker", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given the library is https://github.com/Lewington-pitsos/clipscope, I'd recommend to tag the model as "clipscope" instead.