Haowei Zhang
Results
1
comments of
Haowei Zhang
@ownnaruto you could refer https://github.com/haowei01/pytorch-examples/blob/master/ranking/LambdaRank.py#L13 for the formula: ``` lambda += - N / (1 + exp(Si - Sj)) * (gain(rel_i) - gain(rel_j)) * |1/log(pos_i+1) - 1/log(pos_j+1)| ``` I will...