Spaces:
Runtime error
Runtime error
Vaibhav Srivastav
commited on
Commit
·
decaa84
1
Parent(s):
42a9fb0
yet another attempt at fixing the model_name
Browse files
app.py
CHANGED
@@ -53,7 +53,8 @@ def predict_and_greedy_decode(input_file):
|
|
53 |
|
54 |
return transcribed_text
|
55 |
|
56 |
-
def return_all_predictions(input_file):
|
|
|
57 |
return predict_and_ctc_decode(input_file), predict_and_greedy_decode(input_file)
|
58 |
|
59 |
|
|
|
53 |
|
54 |
return transcribed_text
|
55 |
|
56 |
+
def return_all_predictions(input_file, model_name):
|
57 |
+
print(model_name)
|
58 |
return predict_and_ctc_decode(input_file), predict_and_greedy_decode(input_file)
|
59 |
|
60 |
|