Datasets:
Size:
10M<n<100M
License:
Update unpack_data.py
Browse files- unpack_data.py +1 -0
unpack_data.py
CHANGED
@@ -28,4 +28,5 @@ for m, dtype, shape in maps:
|
|
28 |
print("Reading", filename, [total_frames] + shape)
|
29 |
m_out = np.memmap(filename, dtype=dtype, mode="r", shape=tuple([total_frames] + shape))
|
30 |
assert m_out.shape[0] == total_frames
|
|
|
31 |
|
|
|
28 |
print("Reading", filename, [total_frames] + shape)
|
29 |
m_out = np.memmap(filename, dtype=dtype, mode="r", shape=tuple([total_frames] + shape))
|
30 |
assert m_out.shape[0] == total_frames
|
31 |
+
print(m, m_out[:100])
|
32 |
|