Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 "
|
| 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 |
|