FeTS-AI / Algorithms

This repo contains the model architectures to be used in the OpenFL backend.
Other
7 stars 11 forks source link

Changes to pt_3dresnet allowing for a softmax output when using one-h… #7

Closed brandon-edwards closed 4 years ago

brandon-edwards commented 4 years ago

…ot encoding of labels, and simply applying sigmoid to map to [0,1] otherwise.

Within the outconv layer of pt_3dresunet, a softmax was being applied (along axis=1) just before the output. This is appropriate for the non-binary classification case (when output is one-hot encoded), but produces a 1.0 output in the case of single channel output.

Proposed Changes