Harveenchadha's picture
Update app.py
e220ed1
raw history blame
No virus
690 Bytes
import os
#import gradio as gr
os.system('wget -q https://storage.googleapis.com/vakyaansh-open-models/translation_models/en-indic.zip')
os.system('unzip /home/user/app/en-indic.zip')
os.system('pip uninstall -y numpy')
os.system('pip install numpy')
#os.system('pip uninstall -y numba')
#os.system('pip install numba==0.53')
from fairseq import checkpoint_utils, distributed_utils, options, tasks, utils
from inference.engine import Model
indic2en_model = Model(expdir='en-indic')
def translate(text):
return indic2en_model.translate_paragraph(text, 'en', 'hi')
print(translate('helo how are you'))
#iface = gr.Interface(fn=translate, inputs="text", outputs="text")
#iface.launch()