/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
seismic quantized
Jeremy Magland <jmagland@flatironinstitute.org> committed commit 94cbc261afdf parent 7276f4b Browse files
1 changed file+2−2
benchcompress/src/benchcompress/datasets/seismic/__init__.pymodified+2−2View file
@@ -60,7 +60,7 @@ def _load_04A_04B_seismic_data() -> np.ndarray:
6060
6161 def _load_quantized_04A_04B_seismic_data():
6262 X = _load_04A_04B_seismic_data()
63- step = 10000
63+ step = 3000
6464 X = np.round(X / step).astype(np.int32)
6565 return X
6666
@@ -77,7 +77,7 @@ datasets = [
7777 },
7878 {
7979 "name": "seismic-04A-04B-quantized",
80- "version": "3",
80+ "version": "4",
8181 "description": "Seismic data from Roger Revelle voyage RR1508, quantized.",
8282 "create": lambda: _load_quantized_04A_04B_seismic_data(),
8383 "tags": tags_integer,
moveopenescclose