i.e. log_std is an unused parameter in the classification criterion:
|
def BCEWithLogitsLoss(output, log_std, target): |
|
loss = nn.functional.binary_cross_entropy_with_logits(output, target) |
|
return loss |
If this is the case, should the uncertainty output from CrabNet be ignored by the user during classification? In other words, are the uncertainty values essentially just a bunch of random numbers for classification?
i.e.
log_stdis an unused parameter in the classificationcriterion:CrabNet/utils/utils.py
Lines 263 to 265 in a5be06f
If this is the case, should the uncertainty output from CrabNet be ignored by the user during classification? In other words, are the uncertainty values essentially just a bunch of random numbers for classification?