davidtvs / PyTorch-ENet

PyTorch implementation of ENet
MIT License
383 stars 129 forks source link

what happened to unlabeled or void classes? #36

Closed isalirezag closed 4 years ago

isalirezag commented 4 years ago

Can you please explain how you handle the void classes or unlabeled classes?

I guess more accurately I am asking what is this doing:

```parser.add_argument(
    "--with-unlabeled",
    dest='ignore_unlabeled',
    action='store_false',
    help="The unlabeled class is not ignored.")```

are we not ignoring the unlabeled classes? how is that even possible? Thank you for explanation in advance!

davidtvs commented 4 years ago

You can handle void in two different ways:

By default, it'll do the second, and --with-unlabeled allows you to switch to the first option.