Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -24,9 +24,9 @@ example_text = [
|
|
24 |
examples = [
|
25 |
[
|
26 |
example_text[i],
|
27 |
-
round(random.uniform(0,1), 1),
|
28 |
-
int(random.uniform(
|
29 |
-
int(random.uniform(
|
30 |
]
|
31 |
|
32 |
|
|
|
24 |
examples = [
|
25 |
[
|
26 |
example_text[i],
|
27 |
+
round(random.uniform(0.7,1), 1),
|
28 |
+
int(random.uniform(120,200)),
|
29 |
+
int(random.uniform(200,300))] for i,x in enumerate(example_text)
|
30 |
]
|
31 |
|
32 |
|