What to expect for #7 of the PyTorch Book Reading Group: We’ve just learned how to grab the LUNA 16 dataset and make it work with torch datasets. In this meetup, we’ll train a classifier on top of this.
Fastai has a machine learning course that last ran in 2018 (and may be a little outdated). Some of us are planning to reboot it and make it work in 2021
when %of one class is quite more than compared to other. Say 99.99% data belongs to 1 class and just 0.01% to other.
If u build a model that just predicts the majority class, in that case our accuracy will be already 99.99% but we know that this model is not good.
I think cross-entropy will penalize wrong predictions equally - if a scan has a malignant tumor but the model says everything’s fine, and if a scan has a benign tumor but the model says it’s malignant.
What @meerio meant (I think) is that if a scan has a malignant tumor and the model says it is benign, then it should be penalized more compared to if a scan has a benign tumor but the model says it’s malignant.