Arijit-hazra commited on
Commit
eb0524f
1 Parent(s): 7a0bbe6

minor function name error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ def single_img_transcribe(image, temperature=1):
38
  def img_transcribes(image):
39
  result = []
40
  for t in [0,0.5,1]:
41
- result.append(single_transcribe(image, t))
42
  return result
43
 
44
  gr.Interface(fn=img_transcribes,
 
38
  def img_transcribes(image):
39
  result = []
40
  for t in [0,0.5,1]:
41
+ result.append(single_img_transcribe(image, t))
42
  return result
43
 
44
  gr.Interface(fn=img_transcribes,