Safetensors
tapct
custom_code
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -70,7 +70,7 @@ volume = sitk.DICOMOrient(volume, 'LPS')
70
 
71
  # Get array, expand to (B, C, D, H, W) and preprocess
72
  array = sitk.GetArrayFromImage(volume)
73
- array = np.expand_dims(array, axis(0, 1))
74
  x = preprocessor(array)['pixel_values']
75
 
76
  # Forward pass
 
70
 
71
  # Get array, expand to (B, C, D, H, W) and preprocess
72
  array = sitk.GetArrayFromImage(volume)
73
+ array = np.expand_dims(array, axis=(0, 1))
74
  x = preprocessor(array)['pixel_values']
75
 
76
  # Forward pass