ClassClassificationHead
class liqfit.modeling.ClassClassificationHead
Parameters:
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 to1e-5
).ignore_index (int): Index that will be ignored during loss calculation. (Defaults to -100).
Using ClassClassificationHead
Last updated