Spaces:
Runtime error
Runtime error
Commit
·
a90b0a6
1
Parent(s):
1c995b0
Upload app.py
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
title="Shiba Generator 🐶"
|
5 |
+
description = '<h2 style="text-align:center">Create By ShibaDev</h2>'
|
6 |
+
|
7 |
+
|
8 |
+
text_imagen = gr.Interface.load("models/ShibaDeveloper/olivia-v1.0")
|
9 |
+
text_translate = gr.Interface.load("models/Helsinki-NLP/opus-mt-es-en")
|
10 |
+
|
11 |
+
gr.Series(text_translate, text_imagen, title=title, description = description).launch(debug=True)
|