Sandiago21 commited on
Commit
97eef2a
·
verified ·
1 Parent(s): b0f2b1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1018,8 +1018,7 @@ mic_transcribe = gr.Interface(
1018
  greek_translation_pipe = pipeline("text-generation", model="Helsinki-NLP/opus-mt-tc-big-el-en")
1019
 
1020
  def translate_from_greek_english(text):
1021
- return "Hello world"
1022
- # return greek_translation_pipe(text)#[0]["translation_text"]
1023
 
1024
 
1025
 
 
1018
  greek_translation_pipe = pipeline("text-generation", model="Helsinki-NLP/opus-mt-tc-big-el-en")
1019
 
1020
  def translate_from_greek_english(text):
1021
+ return greek_translation_pipe(text)#[0]["translation_text"]
 
1022
 
1023
 
1024