Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline
|
|
3 |
|
4 |
classifier = pipeline("translation_en_to_de", model="t5-base")
|
5 |
def main():
|
6 |
-
st.title("translate English to
|
7 |
|
8 |
with st.form("text_field"):
|
9 |
text = st.text_area('enter some text:')
|
|
|
3 |
|
4 |
classifier = pipeline("translation_en_to_de", model="t5-base")
|
5 |
def main():
|
6 |
+
st.title("translate English to German")
|
7 |
|
8 |
with st.form("text_field"):
|
9 |
text = st.text_area('enter some text:')
|