You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Equivariant feature extractor that loads in a 3D nii.gz image, extracts a single slice and pushes it through the equivariant network. The extracted features are printed to terminal.
197
+
Equivariant feature extractor that loads in a 3D nii.gz image, extracts a single slice and
198
+
pushes it through the equivariant network. The extracted features are printed to terminal.
197
199
"""
198
200
nii_file_path="testing_data/source_0_0.nii.gz"# Path to the 3D .nii.gz file
199
201
slice_index=64# Index of the slice to extract
@@ -209,10 +211,10 @@ def main():
209
211
withtorch.no_grad():
210
212
features=model(input_slice)
211
213
212
-
print("Extracted features:", features) #print out extracted features from the equivariant filter
214
+
print("Extracted features:", features) # print out extracted features from the equivariant filter
0 commit comments