Last updated
Last updated
class liqfit.modeling.LabelClassificationHead
in_features (int) Number of input features.
out_features (int) Number of output features.
multi_target (bool): Whether the output is multi-target or not (used for loss calculation).
bias (bool): Whether to use bias in the nn.Linear
layer or not.
temperature (int): Temperature that will be divided by the linear layer output to calibrate the output. (Defaults to 1.0)
eps (float): Epsilon will be added to the temperature
for numerical stability. (Defaults to 1e-5
).