guides/02_building-interfaces/05_four-kinds-of-interfaces.md
So far, we've always assumed that in order to build an Gradio demo, you need both inputs and outputs. But this isn't always the case for machine learning demos: for example, unconditional image generation models don't take any input but produce an image as the output.
It turns out that the gradio.Interface class can actually handle 4 different kinds of demos:
Depending on the kind of demo, the user interface (UI) looks slightly different:
Let's see how to build each kind of demo using the Interface class, along with examples:
To create a demo that has both the input and the output components, you simply need to set the values of the inputs and outputs parameter in Interface(). Here's an example demo of a simple image filter:
$code_sepia_filter $demo_sepia_filter
What about demos that only contain outputs? In order to build such a demo, you simply set the value of the inputs parameter in Interface() to None. Here's an example demo of a mock image generation model:
$code_fake_gan_no_input $demo_fake_gan_no_input
Similarly, to create a demo that only contains inputs, set the value of outputs parameter in Interface() to be None. Here's an example demo that saves any uploaded image to disk:
$code_save_file_no_output $demo_save_file_no_output
A demo that has a single component as both the input and the output. It can simply be created by setting the values of the inputs and outputs parameter as the same component. Here's an example demo of a text generation model:
$code_unified_demo_text_generation $demo_unified_demo_text_generation
It may be the case that none of the 4 cases fulfill your exact needs. In this case, you need to use the gr.Blocks() approach!