Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
atolopko
/
gradio-model-serve
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
atolopko
commited on
Mar 25, 2024
Commit
974b15b
·
verified
·
1 Parent(s):
39a4802
add app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import gradio as gr
2
+
3
+
demo = gr.load("Helsinki-NLP/opus-mt-en-es", src="models")
4
+
5
+
demo.launch()