Spaces:
Runtime error
Runtime error
Nassima Oukali
commited on
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from transformers import MBartForConditionalGeneration, MBart50TokenizerFast
|
3 |
+
|
4 |
+
# Load pre-trained model and tokenizer
|
5 |
+
model_name = "ahmed792002/Finetuning_MBart_English_Arabic_Translation"
|
6 |
+
model = MBartForConditionalGeneration.from_pretrained(model_name)
|
7 |
+
tokenizer = MBart50TokenizerFast.from_pretrained(model_name)
|
8 |
+
|
9 |
+
# Streamlit App
|
10 |
+
st.title("English to Arabic Translation")
|
11 |
+
st.write("Enter text in English to translate it to Arabic:")
|
12 |
+
|
13 |
+
# Input box for English text
|
14 |
+
english_text = st.text_area("Enter English Text")
|
15 |
+
|
16 |
+
# Translate the text when the button is clicked
|
17 |
+
if st.button("Translate"):
|
18 |
+
if english_text:
|
19 |
+
# Tokenize the input
|
20 |
+
inputs = tokenizer(english_text, return_tensors="pt", padding=True)
|
21 |
+
|
22 |
+
# Generate translation
|
23 |
+
translated = model.generate(**inputs)
|
24 |
+
|
25 |
+
# Decode the translated text
|
26 |
+
translated_text = tokenizer.decode(translated[0], skip_special_tokens=True)
|
27 |
+
|
28 |
+
# Display the translated text
|
29 |
+
st.write(f"Translated text: {translated_text}")
|
30 |
+
else:
|
31 |
+
st.write("Please enter some English text to translate.")
|