ameerameerai commited on
Commit
76577ac
1 Parent(s): e8c70cd

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ # تحميل نموذج الترجمة
5
+ translator = pipeline("translation_en_ar", model="Helsinki-NLP/opus-mt-en-ar")
6
+
7
+ # تعريف دالة الترجمة
8
+ def translate_text(text):
9
+ result = translator(text)[0]["translation_text"]
10
+ return result
11
+
12
+ # بناء واجهة المستخدم
13
+ iface = gr.Interface(
14
+ fn=translate_text,
15
+ inputs=gr.Textbox(lines=2, placeholder="أدخل النص الإنجليزي هنا"),
16
+ outputs="text",
17
+ title="مترجم إنجليزي-عربي",
18
+ description="قم بترجمة النصوص من الإنجليزية إلى العربية",
19
+ )
20
+
21
+ # تشغيل التطبيق
22
+ iface.launch()