I use the below code:
gr.Interface(fetch_once, [b1, b2], [b3])
get below ui:
Now I donโt want to show
Flag
button and modify Submit
into Click
, Shall I do this?
I use the below code:
gr.Interface(fetch_once, [b1, b2], [b3])
get below ui:
Flag
button and modify Submit
into Click
, Shall I do this?
and
b2 = gr.Button(value="Click")
b3 = gr.Button(visible=False)
thank you for your help.
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.