Skip to content
Snippets Groups Projects

Updates for TREC pipelines

Merged Christopher Randolph Rhodes requested to merge int_trec into staging
1 file
+ 8
0
Compare changes
  • Side-by-side
  • Inline
@@ -451,6 +451,14 @@ class PatchStack(InMemoryDataAccessor):
else:
return self.data[:, :, :, 0, :]
@property
def smallest(self):
return np.array([p.shape for p in self.get_list()]).min(axis=0),
@property
def largest(self):
return np.array([p.shape for p in self.get_list()]).max(axis=0)
def export_pyxcz(self, fpath: Path):
tzcyx = np.moveaxis(
self.pyxcz, # yxcz
Loading