Spaces:
Running
on
Zero
Running
on
Zero
da03
commited on
Commit
·
49164cf
1
Parent(s):
903ac0f
app.py
CHANGED
@@ -54,7 +54,7 @@ def predict_product(num1, num2):
|
|
54 |
predicted_annotations_per_model = {}
|
55 |
for step in range(max(MAX_PRODUCT_DIGITS_PER_MODEL.values())): # Set a maximum limit to prevent infinite loops
|
56 |
import time
|
57 |
-
time.sleep(0.
|
58 |
# Ground Truth
|
59 |
ground_truth_annotations = [(ground_truth_digit, None) for ground_truth_digit in ground_truth_digits_reversed[:step+1]]
|
60 |
ground_truth_annotations = ground_truth_annotations[::-1]
|
|
|
54 |
predicted_annotations_per_model = {}
|
55 |
for step in range(max(MAX_PRODUCT_DIGITS_PER_MODEL.values())): # Set a maximum limit to prevent infinite loops
|
56 |
import time
|
57 |
+
time.sleep(0.1)
|
58 |
# Ground Truth
|
59 |
ground_truth_annotations = [(ground_truth_digit, None) for ground_truth_digit in ground_truth_digits_reversed[:step+1]]
|
60 |
ground_truth_annotations = ground_truth_annotations[::-1]
|