Share and Load Models from the BOINC AI Hub
Sharing and Loading Models From the Hugging Face Hub
The timm
library has a built-in integration with the BOINC AI Hub, making it easy to share and load models from the 🌍 Hub.
In this short guide, we’ll see how to:
Share a
timm
model on the HubHow to load that model back from the Hub
Authenticating
First, you’ll need to make sure you have the huggingface_hub
package installed.
Copied
Then, you’ll need to authenticate yourself. You can do this by running the following command:
Copied
Or, if you’re using a notebook, you can use the notebook_login
helper:
Copied
Sharing a Model
Copied
Here is where you would normally train or fine-tune the model. We’ll skip that for the sake of this tutorial.
Let’s pretend we’ve now fine-tuned the model. The next step would be to push it to the Hub! We can do this with the timm.models.hub.push_to_hf_hub
function.
Copied
Running the above would push the model to <your-username>/resnet18-random
on the Hub. You can now share this model with your friends, or use it in your own code!
Loading a Model
Loading a model from the Hub is as simple as calling timm.create_model
with the pretrained
argument set to the name of the model you want to load. In this case, we’ll use nateraw/resnet18-random
, which is the model we just pushed to the Hub.
Copied
Last updated