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

I have seen [this solution](https://github.com/tensorflow/ranking/issues/196#issuecomment-631236916) on how to write in ELWC format, but this solution does not scale to huge data. Is there a way to do parallel write with...

Hello! I'm training and evaluating data in the libsvm format (using tf_ranking_libsvm.py), however I'd like to do predictions too, but I'm having no success at it. I'm not really good...

Hey guys. I work at a relatively large scale company, and during my training loop I am eventually running OOM on my vms. This is unexpected and I was hoping...

Hi , it seems that install tensorflow_ranking always updates the tensorflow version to latest. is it neccessary? or did i missunderstand anything? I used NVidia docker container to train the...

Thank you very much for your excellent work in tensorflow/ranking. I am a graduate student at the University of Colorado, studying the best practices of evolving ML codes. From our...

Rename `lr` to `learning_rate`

I am trying to implement a custom ranking metric based lambda weights class. The paper I am reading defines lambda weights as depending on scores, $ \lambda_{ij} = ( {-\sigma}/{1+exp({s_i-s_j})}...

It looks like TFR-Bert based ranking was removed from tensorflow_ranking/extension. Is there a specific reason for this?

Hi! This paper develops [lambdaloss](https://storage.googleapis.com/pub-tools-public-publication-data/pdf/8052de632ae7c9d15950a038acd1b0d69d84a409.pdf). The README states that lambdaloss implemented (`[LambdaLoss](https://ai.google/research/pubs/pub47258) implementation for direct ranking metric optimization.` but I don't see it listed as a loss [here](https://github.com/tensorflow/ranking/blob/master/tensorflow_ranking/python/losses.py#L34-L50). Am I...

Hello, I'm trying to migrate my existing TFR code onto Keras, however I'm having difficulty getting predictions. After using ``` model.fit( x=train_dataset, epochs=10, steps_per_epoch=self._hparams.steps_per_epoch, validation_steps=None, validation_data=vali_dataset, callbacks=self.build_callbacks(), verbose=verbose) ``` I...