GithubHelp home page GithubHelp logo

About the label about polyloss-pytorch HOT 2 CLOSED

abhuse avatar abhuse commented on June 5, 2024
About the label

from polyloss-pytorch.

Comments (2)

abhuse avatar abhuse commented on June 5, 2024

Hi, 'channel' is number of classes, right? So your labels is already one-hot encoded?

At the moment polyloss-focal expects to labels to hold class ids (e.g. of shape [batch, H,W] in your case). Conversion to one-hot format is done in the following lines:

    class Poly1FocalLoss(nn.Module):
        def forward(self, logits, labels):
            . . . 
            if labels.ndim == 1:
                labels = F.one_hot(labels, num_classes=self.num_classes)

            # if labels are of shape [N, ...] e.g. segmentation task
            # convert to one-hot tensor of shape [N, num_classes, ...]
            else:
                labels = F.one_hot(labels.unsqueeze(1), self.num_classes).transpose(1, -1).squeeze_(-1)
            . . .

If your labels are already one-hot encoded the quick solution would be simply to comment 'if ... else' lines shown above that call F.one_hot function.

With that being said, I am going to add the option to make one-hot encoding optional for scenarios where labels are already one-hot. I think that is a common case.

from polyloss-pytorch.

abhuse avatar abhuse commented on June 5, 2024

You can now set label_is_onehot to True when you initialize Poly1FocalLoss if your labels are one-hot encoded.

from polyloss-pytorch.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.