SuperSl6's picture
Create app.py
d1b79e0 verified
raw
history blame
713 Bytes
from transformers import pipeline
import gradio as gr
# Load the model using pipeline
model = pipeline("text2text-generation", model="SuperSl6/Arabic-Text-Correction")
def correct_text(input_text):
result = model(input_text)[0]['generated_text']
return result
# Gradio Interface
interface = gr.Interface(
fn=correct_text,
inputs=gr.Textbox(lines=3, placeholder="أدخل النص العربي هنا..."),
outputs=gr.Textbox(),
live=True, # Real-time processing
title="تصحيح النص العربي",
description="أداة لتصحيح النصوص العربية باستخدام نموذج SuperSl6/Arabic-Text-Correction."
)
# Launch the app
interface.launch(debug=True)