Introducing Gradio ClientsJoin us on Thursday, 9am PST
LivestreamIntroducing Gradio ClientsJoin us on Thursday, 9am PST
LivestreamNew to Gradio? Start here: Getting Started
See the Release History
To install Gradio from main, run the following command:
pip install https://gradio-builds.s3.amazonaws.com/9898c617676ca0f7d8d6c1961e4bd498be2b2c11/gradio-4.36.1-py3-none-any.whl
*Note: Setting share=True
in
launch()
will not work.
gradio.load(ยทยทยท)
css
, js
, and head
attributes) will not be loaded.import gradio as gr
demo = gr.load("gradio/question-answering", src="spaces")
demo.launch()
Parameter | Description |
---|---|
name str required | the name of the model (e.g. "gpt2" or "facebook/bart-base") or space (e.g. "flax-community/spanish-gpt2"), can include the |
src str | None default: None | the source of the model: |
hf_token str | None default: None | optional access token for loading private Hugging Face Hub models or spaces. Find your token here: https://huggingface.co/settings/tokens. Warning: only provide this if you are loading a trusted private Space as it can be read by the Space you are loading. |
alias str | None default: None | optional string used as the name of the loaded model instead of the default name (only applies if loading a Space running Gradio 2.x) |