README / README.md
Thibault Goehringer
Revert changes
84b0301
|
raw
history blame
3.63 kB
metadata
title: README
emoji: ❤️
colorFrom: red
colorTo: red
sdk: static
pinned: false

Welcome to the Keras Working Group 🤗❤️ Please join us on keras-working-group channel on Discord 👾!
Feel free to pick up one of the Keras examples to build a Space or host the model in this spreadsheet 🙌🏻!

Hugging Face makes it easy to collaboratively build and showcase your Keras models!
You can collaborate with your organization, upload and showcase your own models in your profile, or join us in this organization to demo Keras examples! ❤️

Keras.io
Push your Keras models to Hub ❤️
Find all Keras models on the 🤗 Hub

To upload your Keras models to the Hub, you can use the push_to_hub_keras function.

from huggingface_hub.keras_mixin import push_to_hub_keras
push_to_hub_keras(model = model, repo_url = "https://huggingface.co/your-username/your-awesome-model")
    

To load Keras models from the 🤗Hub, use from_pretrained_keras function.

from huggingface_hub.keras_mixin import from_pretrained_keras
from_pretrained_keras("your-username/your-awesome-model)