tensorflow-LTR
tensorflow-LTR copied to clipboard
Tensorflow implementations of various Learning to Rank (LTR) algorithms.
I don't understand why different query in the same batch use the same set of indexes? model.py line 419 index = tf.reshape(tf.range(1., tf.cast(self.batch_size, dtype=tf.float32) + 1), tf.shape(self.label))
Hello Chenglong, I red your code for several days. It's very good. But I was very confused when reading your code. Could you explain the definition of "shape" in function...
1. For the LR model, why does the LR model almost the same as the DNN model? Did you missed or did you forget? 2. In the readme.md, you wrote...
I just read the code but found it hard to understand how the data is organized. To be specific, i can't seem to understand what the label stand for. Is...
I just came across your gem of a library. When do you plan to support ranked lists ? Technically, I think I can just use pairwise and use a partial...