Spaces:
Runtime error
Runtime error
Commit
·
eb0524f
1
Parent(s):
7a0bbe6
minor function name error
Browse files
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(
|
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,
|