ranking icon indicating copy to clipboard operation
ranking copied to clipboard

Learning to Rank in TensorFlow

Results 90 ranking issues
Sort by recently updated
recently updated
newest added

In the latest release of TensorFlow Ranking [v0.3.0](https://github.com/tensorflow/ranking/releases/tag/v0.3.0), we introduced Keras APIs for TF-Ranking. We provide a simplified [user journey](https://github.com/tensorflow/ranking/blob/master/tensorflow_ranking/examples/keras/README.md) for building ranking models. We provide object oriented building blocks...

announcement

Hi, Thanks for this amazing library. I was trying to implement `basic_ranking` [example](https://www.tensorflow.org/recommenders/examples/basic_ranking) with my own data from a data frame (which is basically numeric). I created a tf dataset...

Hi, How can I compute non-ranking metrics or univariate metrics, such as AUC, or recall? (i.e. computing metrics after unfurling the list of examples, similar to what is done in...

I am able to predict using estimator.predict just like estimator.evaluate but what if I want to predict later using the saved_model.pb how to do it locally?

Hi, Thanks for the great library! I was trying to build a Keras model using the example in https://github.com/tensorflow/ranking/blob/master/tensorflow_ranking/examples/keras/keras_dnn_tfrecord.py. But I'm stuck at a preprocessing step. Let's say I have...

https://github.com/tensorflow/ranking/blob/94cccec8b4e71d2cc4489c61e2623522738c2924/tensorflow_ranking/python/keras/metrics.py#L186 Seems that currently the ranking metrics does not support the mask argument. Passing the `mask` argument as `sample_weight` argument does not work, because when calculating ranks, the 0 padded...

Congrats to your AISTATS2021 paper, entitled RankDistill: Knowledge Distillation for Ranking. Could you please share me some piece of code for this paper? Maybe just the coupled distillation loss? Thank...

I trained and saved a TF model following the approach found here: https://github.com/tensorflow/ranking/blob/master/tensorflow_ranking/examples/keras/antique_kpl_din.py The model is saved this way: ``` model.save( filepath=saved_model_path, signatures=tfr.keras.saved_model.Signatures( model, context_feature_spec=context_feature_spec, example_feature_spec=example_feature_spec, mask_feature_name=_MASK)()) ``` Later to...

Hello, thanks for the great tf ranking project. I want to use TFR BERT in a project, but I have not able to use tensorflow-ranking yet. I am using colab....

Hi, I am wondering can we use explicit feedback for retrieval model, and implicit feedback for ranking model? And for the evaluation, can we use FactorizedTopK for ranking model or...