Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,8 @@ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
|
6 |
from transformers import FSMTForConditionalGeneration, FSMTTokenizer
|
7 |
|
8 |
st.title("Paraphraser Three -- Back Translation")
|
|
|
|
|
9 |
|
10 |
user_input = st.text_area("Input sentence.")
|
11 |
|
|
|
6 |
from transformers import FSMTForConditionalGeneration, FSMTTokenizer
|
7 |
|
8 |
st.title("Paraphraser Three -- Back Translation")
|
9 |
+
st.write("Paraphrase means to express meaning using different words. Back Translation refers to the method by which the computer paraphrases.")
|
10 |
+
st.write("Write or paste English language text below, and enter. The machine will translate your text into another language using one language model. The machine will then translate that text into English using another language model.")
|
11 |
|
12 |
user_input = st.text_area("Input sentence.")
|
13 |
|