Add application file
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
-
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer, TranslationPipeline
|
3 |
|
4 |
st.title("Multilingual Translation App")
|
5 |
st.write("### Powered by Hugging Face and Streamlit")
|
|
|
1 |
import streamlit as st
|
2 |
+
from transformers import pipeline, AutoModelForSeq2SeqLM, AutoTokenizer, TranslationPipeline
|
3 |
|
4 |
st.title("Multilingual Translation App")
|
5 |
st.write("### Powered by Hugging Face and Streamlit")
|