-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @dyollb, The Hope it helps, |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi @dyollb, The Hope it helps, |
Beta Was this translation helpful? Give feedback.
Hi @dyollb,
The
roi_size
parameter in the Sliding Window Inferer refers to the spatial window size for inferences. This size stands for the region of interest that the model will evaluate during the sliding window operation.If
roi_size
is the same as your training patches (in your case, [96, 96, 96]), it means your inference operation happens exactly on the same spatial scales as during training.Increasing the
roi_size
to a larger dimension (like [160, 160, 160]) expands the context that the model sees during the inference operation. This can often improve the model's performance because it is considering a larger region of the image and can therefore make better predictions, especially…