Adding a loss mask?
See original GitHub issueAre there any plans to add an easy way to include “loss mask” to Dataset
class for segmentation task? As what I understood, it only takes img
and seg
?
For example I have such CT volumes with the following “windowing” that could be masked away
And in general the following behavior could be a nice feature
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How do I mask a loss function in Keras with the TensorFlow ...
I am trying to implement a sequence-to-sequence task using LSTM by Keras with the TensorFlow backend. The inputs are English sentences with ...
Read more >Masking and padding with Keras | TensorFlow Core
There are three ways to introduce input masks in Keras models: Add a keras.layers.Masking layer. Configure a keras.layers.Embedding layer with ...
Read more >Elden Ring - Don't Miss This Mask! ESSENTIAL for Blood Loss ...
Don't miss this mask in Elden Ring! The White Mask is a must have item for Blood Loss builds, but you can also...
Read more >What does it mean to have a 'masked' loss function? - Reddit
In order to accurately represent the loss, they only consider the loss for the boxes with actual objects inside. Mask out the losses...
Read more >Maria Salome Mascarilla Capilar MOM HAIR MASK Hair Loss ...
Amazon.com: Maria Salome Mascarilla Capilar MOM HAIR MASK Hair Loss Prevention/Nourishing Mask 11.8 oz : Beauty & Personal Care. ... Add to Cart....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
sure @eddyleelin, let me look into this…
Sorry, could I ask what is the current status of this issue? @wyli It seems like currently
MaskedDiceLoss
is the only type of segmentation loss with an implementation of masking. Would it be beneficial to extend masking to the other segmentation losses, such as Tversky or Focal Losses? Perhaps with a wrapper function like MultiScaleLoss? Thanks 😄