Spaces:
Running
on
Zero
Running
on
Zero
da03
commited on
Commit
•
9eda610
1
Parent(s):
3f8feaa
app.py
CHANGED
@@ -57,8 +57,8 @@ def predict_product(num1, num2):
|
|
57 |
ground_truth_results = []
|
58 |
for i in range(step+1):
|
59 |
ground_truth_digit = ground_truth_digits_reversed[i]
|
60 |
-
|
61 |
-
|
62 |
# Predicted
|
63 |
for model_name in models:
|
64 |
model = models[model_name]
|
|
|
57 |
ground_truth_results = []
|
58 |
for i in range(step+1):
|
59 |
ground_truth_digit = ground_truth_digits_reversed[i]
|
60 |
+
ground_truth_results.append((ground_truth_digit, None))
|
61 |
+
ground_truth_results = ground_truth_results[::-1]
|
62 |
# Predicted
|
63 |
for model_name in models:
|
64 |
model = models[model_name]
|