Aytaj commited on
Commit
b3754a6
·
1 Parent(s): 292a2c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -1,6 +1,7 @@
1
  # 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"."
2
  import streamlit as st
3
  from transformers import pipeline
 
4
 
5
  st.title("Translate to French")
6
  sentence = st.text_input("Enter your sentence:")
 
1
  # 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"."
2
  import streamlit as st
3
  from transformers import pipeline
4
+ import sentencepiece
5
 
6
  st.title("Translate to French")
7
  sentence = st.text_input("Enter your sentence:")