We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplest demo
import gradio as gr def greet(name): return "Hello " + name + "!" gr.Interface(fn=greet, inputs="text", outputs="text").launch()
responds on submit button much faster if network connection is not available for app. Why?
i. e.
python demo.py response time 1.26s
sandbox-exec -f nonetwork.sb python demo.py response time 0.014s
The text was updated successfully, but these errors were encountered:
This was because of analytics on usage of the interfaces being sent over the network. This has been moved to the background in the latest commit.
Sorry, something went wrong.
No branches or pull requests
Simplest demo
import gradio as gr
def greet(name):
return "Hello " + name + "!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()
responds on submit button much faster if network connection is not available for app.
Why?
i. e.
The text was updated successfully, but these errors were encountered: