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