Skip to content

Commit 60baeda

Browse files
committed
Addressed copilot review and reran benchmarks
1 parent 668d769 commit 60baeda

84 files changed

Lines changed: 73 additions & 7176 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11

22

3+
# Benchmark generated output
4+
benchmarks/results/
5+
benchmarks/figures/
6+
37
#################
48
## Eclipse
59
#################

benchmarks/data_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Usage::
44
55
from data_generator import DataGenerator
6-
gen = DataGenerator() # loads schema 8.3.0
6+
gen = DataGenerator() # loads schema 8.4.0
77
s = gen.make_string(n_tags=10, n_groups=2, depth=1)
88
series = gen.make_series(n_rows=1000, n_tags=10, n_groups=2, depth=1)
99
real = gen.load_real_data(tile_to=5000)
@@ -25,7 +25,7 @@
2525
class DataGenerator:
2626
"""Build synthetic and real HED data for benchmarking."""
2727

28-
def __init__(self, schema_version="8.3.0", seed=42):
28+
def __init__(self, schema_version="8.4.0", seed=42):
2929
self.schema = load_schema_version(schema_version)
3030
self.lookup = generate_schema_lookup(self.schema)
3131
self._rng = random.Random(seed)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)