Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Jurk06
/
Square-function-gradio
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Jurk06
commited on
Jan 10, 2024
Commit
fe30e0b
·
1 Parent(s):
f9e0677
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def square(x):
4
+
return x*x
5
+
6
+
# Create a Gradio interface
7
+
iface=gr.Interface(fn=square, inputs="number",outputs="number")
8
+
iface.launch()