Skip to content

Commit caf5e94

Browse files
committed
generate new benchmarks for comparison
1 parent ac9a560 commit caf5e94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run_dataset_generation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
python tests/generate_benchmark_tables.py
3131
- name: Upload artifact
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: benchmark-tables
3535
path: tests/CML7_benchmark_tables_new.pkl

tests/generate_benchmark_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def get_benchmark_tables(calc_list):
2727
# create list to store the calculator objects
2828
store_calcs = list()
2929

30-
for i in range(75):
30+
for i in range(5):
3131
np.random.seed(42)
32-
calc = Calculator(dataset=dataset)
32+
calc = Calculator(dataset=dataset, detrend=False, normalise=False)
3333
calc.compute()
3434
store_calcs.append(calc)
3535

0 commit comments

Comments
 (0)