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
If few images are partially annotated then you can do supervised learning.
I would think that given an integer_mask_annotation:
compute target bounding boxes, centroid and width/height (using skimage)
identify which voxel is responsible for each target bounding box.
add a regression loss between the target bounding box and the infered bounding box (i.e. tx_map, ty_map, tw_map, th_map which are all in (0,1)). Note that only few voxel will be "labelled" therefore the regression loss should be "masked".
All location inside the target bounding box should have a loss between p_map and target probability. The target probability is 1 at the center of the bounding box and zero in all the other location of the bounding box, i.e. the probability is both pushed up (at center) and down (at periphery)
identifies the bb with the largest IoU with the target bounding box. For that bb put a cross entropy classification loss between the inferred and target mask
Note:
For most images there would not be any annotation, even the annotation is present it is only partial. Therefore the code need to be written in such a way that this labelled loss defaults to zero in most cases.
The text was updated successfully, but these errors were encountered:
When a model is pretrained we should report the mean and std of each channel in the dataset used for training. User will be responsible to match the mean and std in order to get the most out of the pretrained model.
If few images are partially annotated then you can do supervised learning.
I would think that given an integer_mask_annotation:
Note:
For most images there would not be any annotation, even the annotation is present it is only partial. Therefore the code need to be written in such a way that this labelled loss defaults to zero in most cases.
The text was updated successfully, but these errors were encountered: