Skip to content

Generating model outputs during training and validation for 3D segmentation #1287

Answered by tangy5
jensen-jx asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @jxsoo1 , that's the training and validation strategies.
Since radiology images such as CT scans are large (e.t., 512x512xhundres of slices). GPU can't take entire high resolution volume as input. Typically, when we are training model, we use cropped patches (sub-volumes) randomly sampled from an CT scan (96x96x96), and do prediction, loss backward based on this sub-volume. But in validation or inference, we need to conduct the prediction of all sub-volumes and ensemble to get a complete CT scan prediction, to achieve this, we need iterate all patches using the sliding window way.

In training, you could do sliding window to sample patches, but yes it is typically not as good as random …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jensen-jx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants