Sheemz commited on
Commit
a95bd26
·
verified ·
1 Parent(s): 207290e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -0
app.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ # Load your model from the Hugging Face repository
5
+ model_name = "SLPG/English_to_Urdu_Unsupervised_MT"
6
+ translator = pipeline("translation", model=model_name)
7
+
8
+ # Define the translation function
9
+ def translate_text(input_text):
10
+ result = translator(input_text, max_length=400)
11
+ return result[0]['translation_text']
12
+
13
+ # Create the Gradio interface
14
+ interface = gr.Interface(
15
+ fn=translate_text,
16
+ inputs=gr.inputs.Textbox(lines=2, placeholder="Enter text to translate"),
17
+ outputs="text",
18
+ title="Translation Model Inference",
19
+ description="Translate text using the Hugging Face translation model."
20
+ )
21
+
22
+ # Launch the interface
23
+ interface.launch()