Anudeep Tippabathuni commited on
Commit
8499f35
·
1 Parent(s): 13e9dbb

updated app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
  import torch
3
  import re
4
- import setup # Your config file
5
  from model import create_model
6
  from dataset import TeluguishDataset, Vocabulary # Required for loading the saved vocab objects
7
  from torch_geometric.data import Data
@@ -113,14 +113,8 @@ iface = gr.Interface(
113
  outputs=gr.Textbox(
114
  label="Telugu Script Output"
115
  ),
116
- title="Teluguish to Telugu Transliteration with GNN 🧠",
117
- description="This app uses a Graph Neural Network (GNN) to convert Telugu written in the Roman script (also known as 'Teluguish') into the authentic Telugu script. Built by Anudeep with assistance from Google Gemini.",
118
- examples=[
119
- ["akada mediatho matladina anantaram tirigi Hyderabad bayaluderutaaru"],
120
- ["ee roju ma intlo bhojanam cheyandi"],
121
- ["namaste andaru bagunnara"],
122
- ["bharatadesam na matrubhumi"]
123
- ],
124
  allow_flagging="never"
125
  )
126
 
 
1
  import gradio as gr
2
  import torch
3
  import re
4
+ import setup
5
  from model import create_model
6
  from dataset import TeluguishDataset, Vocabulary # Required for loading the saved vocab objects
7
  from torch_geometric.data import Data
 
113
  outputs=gr.Textbox(
114
  label="Telugu Script Output"
115
  ),
116
+ title="Teluguish to Telugu Transliteration with GNN ",
117
+ description="This app uses a Graph Neural Network (GNN) to convert Telugu written in the Roman script (also known as 'Teluguish') into the authentic Telugu script. ",
 
 
 
 
 
 
118
  allow_flagging="never"
119
  )
120