jmonas commited on
Commit
d3f1386
1 Parent(s): 1b83190

Update unpack_data.py

Browse files
Files changed (1) hide show
  1. 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