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:
Rauhan
/
ImageRestorationTool
like
0
No application file
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
Create IRT
#2
by
dropxone
- opened
Jan 25, 2024
base:
refs/heads/main
←
from:
refs/pr/2
Discussion
Files changed
+7
-0
Files changed (1)
hide
show
IRT
+7
-0
IRT
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!!"
5
+
6
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
iface.launch()