Spaces:
Sleeping
Sleeping
Andrei Cozma
commited on
Commit
·
3c4eba9
1
Parent(s):
737d121
Updates
Browse files- run_tests.py +2 -2
run_tests.py
CHANGED
@@ -2,7 +2,7 @@ import os
|
|
2 |
import multiprocessing
|
3 |
import random
|
4 |
|
5 |
-
num_tests =
|
6 |
|
7 |
update_types = ["first_visit", "every_visit"]
|
8 |
vals_eps = [0.1, 0.2, 0.3, 0.4, 0.5]
|
@@ -15,7 +15,7 @@ def run_test(args):
|
|
15 |
)
|
16 |
|
17 |
|
18 |
-
with multiprocessing.Pool(
|
19 |
tests = []
|
20 |
for update_type in update_types:
|
21 |
for gamma in vals_gamma:
|
|
|
2 |
import multiprocessing
|
3 |
import random
|
4 |
|
5 |
+
num_tests = 10
|
6 |
|
7 |
update_types = ["first_visit", "every_visit"]
|
8 |
vals_eps = [0.1, 0.2, 0.3, 0.4, 0.5]
|
|
|
15 |
)
|
16 |
|
17 |
|
18 |
+
with multiprocessing.Pool(12) as p:
|
19 |
tests = []
|
20 |
for update_type in update_types:
|
21 |
for gamma in vals_gamma:
|