You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The huggingface download stats are almost certainly too low (they currently show 13 downloads in the last month of the tree model. I suspect this is due to our change from a custom download system to the built-in .from_pretrained() combined with our attempts to track downloads.
We submitted code to model-libraries.ts that sets the tracking to occur when .pt and .pl files are downloaded:
But from_pretained is downloading .safetensors and (I believe) config.json.
So, I suspect this will all 'just work' if we remove the custom code from model-libraries.ts. Alternatively we could change the extensions to .json and .safetensors, but it feels like the default implementation is best if it works.
The text was updated successfully, but these errors were encountered:
The huggingface download stats are almost certainly too low (they currently show 13 downloads in the last month of the tree model. I suspect this is due to our change from a custom download system to the built-in
.from_pretrained()
combined with our attempts to track downloads.We submitted code to
model-libraries.ts
that sets the tracking to occur when.pt
and.pl
files are downloaded:But
from_pretained
is downloading.safetensors
and (I believe)config.json
.So, I suspect this will all 'just work' if we remove the custom code from
model-libraries.ts
. Alternatively we could change the extensions to.json
and.safetensors
, but it feels like the default implementation is best if it works.The text was updated successfully, but these errors were encountered: