kmknair commited on
Commit
6a9d77a
·
1 Parent(s): dec6760

added examples and labels-1

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -66,7 +66,7 @@ ta_tr_stream_tab = gr.Interface(
66
  "textbox",
67
  "state"
68
  ],
69
- description="ரெகாட் பட்ட்ண் அமர்தி பேசவும், பேச்சு சொல் வரி பகிர்ப்பு வலது பக்கதில் அச்சிடபடும்",
70
  live=True)
71
  # transcribe Arabic stream
72
  ar_tr_stream_tab = gr.Interface(
@@ -101,11 +101,11 @@ en_tr_stream_tab = gr.Interface(
101
  ta_tr_file_tab = gr.Interface(
102
  fn=transcribe_ta,
103
  inputs=[
104
- gr.Audio(type="filepath", label="தமிழ் ஒலி நூல்"),
105
  gr.Audio(source="microphone", type="filepath", label= "தமிழ் பேச்சு")
106
  ],
107
  examples=[["samples/ta/32862591.mp3", None], ["samples/ta/32862612.mp3", None]],
108
- description="ஒலி பகிர்ப்பு நூலை சமர்ப்பிக்கவும், அல்லது ரெகாட் பட்ட்ண் அமர்தி பேசவும், பேச்சு சொல் வரி பகிர்ப்பு வலது பக்கதில் அச்சிடபடும்",
109
  outputs="text")
110
 
111
  # transcribe Arabic file
@@ -143,10 +143,10 @@ tabs = gr.TabbedInterface(
143
  [
144
  "Arabic Live Transcription",
145
  "English Live Transcription",
146
- "Tamil Live Transcription",
147
  "Arabic File Transcription",
148
  "English File Transcription",
149
- "Tamil File Transcription"
150
  ]
151
  )
152
 
 
66
  "textbox",
67
  "state"
68
  ],
69
+ description="ரெகாட் பட்ட்ண் அமர்தி பேசவும், பேச்சு சொல் பகிர்ப்பு வலது பக்கதில் அச்சிடபடும்",
70
  live=True)
71
  # transcribe Arabic stream
72
  ar_tr_stream_tab = gr.Interface(
 
101
  ta_tr_file_tab = gr.Interface(
102
  fn=transcribe_ta,
103
  inputs=[
104
+ gr.Audio(type="filepath", label="தமிழ் ஒலி பதிப்பு சமர்ப்பித்தல்"),
105
  gr.Audio(source="microphone", type="filepath", label= "தமிழ் பேச்சு")
106
  ],
107
  examples=[["samples/ta/32862591.mp3", None], ["samples/ta/32862612.mp3", None]],
108
+ description="ஒலி பதிப்பு சமர்ப்பிக்கவும், அல்லது ரெகாட் பட்ட்ண் அமர்தி பேசவும், பேச்சு சொல் பகிர்ப்பு வலது பக்கதில் அச்சிடபடும்",
109
  outputs="text")
110
 
111
  # transcribe Arabic file
 
143
  [
144
  "Arabic Live Transcription",
145
  "English Live Transcription",
146
+ "தமிழ் நேரடி சொல் பகிர்ப்பு",
147
  "Arabic File Transcription",
148
  "English File Transcription",
149
+ "தமிழ் ஒலி பதிப்பு சொல் பகிர்ப்பு"
150
  ]
151
  )
152