Gradio function argument with multiple arguments #459
longtongster
started this conversation in
General
Replies: 1 comment 2 replies
-
Hi @longtongster, You can typically use multiple inputs with Gradio via a list input. For example: import gradio as gr
interface = gr.Interface(
fn=function,
inputs=[input_1, input_2, input_3],
outputs=[output_1]
) See more in this video: https://youtu.be/LIO-G7AVgBM |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone knows if the function required in the Interface can work with multiple arguments?
Beta Was this translation helpful? Give feedback.
All reactions