Buckets:
| # Integrations with the Hugging Face Hub[[integrations-with-the-hugging-face-hub]] | |
| <CourseFloatingBanner chapter={9} | |
| classNames="absolute z-10 right-0 top-0" | |
| notebooks={[ | |
| {label: "Google Colab", value: "https://colab.research.google.com/github/huggingface/notebooks/blob/master/course/en/chapter9/section5.ipynb"}, | |
| {label: "Aws Studio", value: "https://studiolab.sagemaker.aws/import/github/huggingface/notebooks/blob/master/course/en/chapter9/section5.ipynb"}, | |
| ]} /> | |
| To make your life even easier, Gradio integrates directly with Hugging Face Hub and Hugging Face Spaces. | |
| You can load demos from the Hub and Spaces with only *one line of code*. | |
| ### Loading models from the Hugging Face Hub[[loading-models-from-the-hugging-face-hub]] | |
| To start with, choose one of the thousands of models Hugging Face offers through the Hub, as described in [Chapter 4](/course/chapter4/2). | |
| Using the special `Interface.load()` method, you pass `"model/"` (or, equivalently, `"huggingface/"`) | |
| followed by the model name. | |
| For example, here is the code to build a demo for [GPT-J](https://huggingface.co/EleutherAI/gpt-j-6B), a large language model, add a couple of example inputs: | |
| ```py | |
| import gradio as gr | |
| title = "GPT-J-6B" | |
| description = "Gradio Demo for GPT-J 6B, a transformer model trained using Ben Wang's Mesh Transformer JAX. 'GPT-J' refers to the class of model, while '6B' represents the number of trainable parameters. To use it, simply add your text, or click one of the examples to load them. Read more at the links below." | |
| article = "<p style='text-align: center'><a href='https://github.com/kingoflolz/mesh-transformer-jax' target='_blank'>GPT-J-6B: A 6 Billion Parameter Autoregressive Language Model</a></p>" | |
| gr.Interface.load( | |
| "huggingface/EleutherAI/gpt-j-6B", | |
| inputs=gr.Textbox(lines=5, label="Input Text"), | |
| title=title, | |
| description=description, | |
| article=article, | |
| ).launch() | |
| ``` | |
| The code above will produce the interface below: | |
| <iframe src="https://course-demos-gpt-j-6B.hf.space" frameBorder="0" height="750" title="Gradio app" class="container p-0 flex-grow space-iframe" allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; sync-xhr; usb; vr ; wake-lock; xr-spatial-tracking" sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads"></iframe> | |
| Loading a model in this way uses Hugging Face's [Inference API](https://huggingface.co/inference-api), | |
| instead of loading the model in memory. This is ideal for huge models like GPT-J or T0pp which | |
| require lots of RAM. | |
| ### Loading from Hugging Face Spaces[[loading-from-hugging-face-spaces]] | |
| To load any Space from the Hugging Face Hub and recreate it locally, you can pass `spaces/` to the `Interface`, followed by the name of the Space. | |
| Remember the demo from section 1 that removes the background of an image? Let's load it from Hugging Face Spaces: | |
| ```py | |
| gr.Interface.load("spaces/abidlabs/remove-bg").launch() | |
| ``` | |
| <iframe src="https://course-demos-remove-bg-original.hf.space" frameBorder="0" height="650" title="Gradio app" class="container p-0 flex-grow space-iframe" allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; sync-xhr; usb; vr ; wake-lock; xr-spatial-tracking" sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads"></iframe> | |
| One of the cool things about loading demos from the Hub or Spaces is that you customize them | |
| by overriding any of the | |
| parameters. Here, we add a title and get it to work with a webcam instead: | |
| ```py | |
| gr.Interface.load( | |
| "spaces/abidlabs/remove-bg", inputs="webcam", title="Remove your webcam background!" | |
| ).launch() | |
| ``` | |
| <iframe src="https://course-demos-Remove-bg.hf.space" frameBorder="0" height="550" title="Gradio app" class="container p-0 flex-grow space-iframe" allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; sync-xhr; usb; vr ; wake-lock; xr-spatial-tracking" sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads"></iframe> | |
| Now that we've explored a few ways to integrate Gradio with the Hugging Face Hub, let's take a look at some advanced features of the `Interface` class. That's the topic of the next section! | |
| <EditOnGithub source="https://github.com/huggingface/course/blob/main/chapters/en/chapter9/5.mdx" /> |
Xet Storage Details
- Size:
- 5.1 kB
- Xet hash:
- 5a93041af4a50e52e66574e9b6f1de2c45a1f4be9e8ad32f6ec4c040bd1104c4
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.