translation_app / app.py
Aytaj's picture
Update app.py
a51fa5b
raw
history blame
480 Bytes
# prompt: write a streamlit app that converts english text into french text when translate button is pressed. The title of page should be "Translate to French"."
import streamlit as st
from transformers import pipeline
st.title("Translate to French")
sentence = st.text_input("Enter your sentence:")
if st.button("Translate"):
pipe = pipeline(model="facebook/m2m100_418M")
translation = pipe(sentence, target_lang="fr")[0]["translation_text"]
st.write(translation)