We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f339e commit e3965c1Copy full SHA for e3965c1
tests/generate_benchmark_tables.py
@@ -27,7 +27,7 @@ def get_benchmark_tables(calc_list):
27
# create list to store the calculator objects
28
store_calcs = list()
29
30
-for i in range(75):
+for i in range(5):
31
np.random.seed(42)
32
calc = Calculator(dataset=dataset, normalise=False)
33
calc.compute()
@@ -36,5 +36,5 @@ def get_benchmark_tables(calc_list):
36
mpi_benchmarks = get_benchmark_tables(store_calcs)
37
38
# save data
39
-with open("tests/CML7_benchmark_tables_no_norm.pkl", "wb") as f:
+with open("tests/CML7_benchmark_tables_new.pkl", "wb") as f:
40
dill.dump(mpi_benchmarks, f)
0 commit comments