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