BrianL commited on
Commit
1c0dfed
·
1 Parent(s): 86931a2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ def trnslt(text):
5
+ first = gr.Interface.load("Helsinki-NLP/opus-mt-tl-en")
6
+ second = gr.Interface.load("Helsinki-NLP/opus-mt-en-tl")
7
+ iface = gr.Series(textgen, tts)
8
+ return iface
9
+
10
+ iface = gr.Interface(
11
+ fn=trnslt,
12
+ inputs='text',
13
+ outputs='text',
14
+ examples=[["Magandang Umaga"],["Magandang gabi"],["Masarap ang Adobo"],["Kumusta ka na"],["Magandang umaga"]],
15
+ theme="darkpeach",
16
+ css=".footer{display:none !important}",
17
+ )
18
+
19
+ iface.launch()