/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
update dataset url file names
Jeremy Magland <jmagland@flatironinstitute.org> committed commit 5468eff8eea4 parent 4206cb9 Browse files
2 changed files+4−4
zia_benchmark/src/zia_benchmark/_memobin.pymodified+1−1View file
@@ -93,7 +93,7 @@ def construct_dataset_url(
9393 Returns:
9494 The constructed memobin URL for the dataset
9595 """
96- path = f"datasets/{dataset_name}/{dataset_version}/data.{format}"
96+ path = f"datasets/{dataset_name}/{dataset_version}/{dataset_name}-{dataset_version}.{format}"
9797 return f"https://tempory.net/f/memobin/{path}"
9898
9999
zia_benchmark/src/zia_benchmark/algorithms/simple_ans/__init__.pymodified+3−3View file
@@ -240,14 +240,14 @@ def simple_ans_markov_decode(x: bytes, dtype: str) -> np.ndarray:
240240 algorithms = [
241241 {
242242 "name": "simple-ans",
243- "version": "1",
243+ "version": "2",
244244 "encode": lambda x: simple_ans_encode(x),
245245 "decode": lambda x, dtype: simple_ans_decode(x, dtype),
246246 "source_file": SOURCE_FILE,
247247 },
248248 {
249249 "name": "simple-ans-delta",
250- "version": "1",
250+ "version": "2",
251251 "encode": lambda x: simple_ans_delta_encode(x),
252252 "decode": lambda x, dtype: simple_ans_delta_decode(x, dtype),
253253 "tags": ["delta_encoding"],
@@ -255,7 +255,7 @@ algorithms = [
255255 },
256256 {
257257 "name": "simple-ans-markov",
258- "version": "1",
258+ "version": "2",
259259 "encode": lambda x: simple_ans_markov_encode(x),
260260 "decode": lambda x, dtype: simple_ans_markov_decode(x, dtype),
261261 "tags": ["markov_prediction"],
moveopenescclose