You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The convert_to_elwc function takes a pandas dataframe and converts it to a ELWC proto by iterating on each of the examples. My question: is there a way to skip this conversion? (i.e. take the original dataframe.values and pass them to the model directly)?
The text was updated successfully, but these errors were encountered:
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:
Later to predict I do the following:
The
convert_to_elwc
function takes a pandas dataframe and converts it to a ELWC proto by iterating on each of the examples. My question: is there a way to skip this conversion? (i.e. take the original dataframe.values and pass them to the model directly)?The text was updated successfully, but these errors were encountered: