Patrick Orlando

Results 85 comments of Patrick Orlando

This is a great question @OmarMAmin, and one that only recently have I got round to experimenting with. The first thing to be clear on is that this is describing...

Thanks for sharing your results @OmarMAmin, I'll definitely be tuning the temperature parameter!

@hkristof03, I randomly sample from the corpus using a tf.data.Dataset and then I merge it in using ```python uniform_negatives = item_ds.cache().repeat().shuffle().batch(uniform_negative_batch_size) train_with_mns = tf.data.Dataset.zip(train_ds, uniform_negatives) ``` You don't need to...

welcome @zH0me87, > looks like you sample the candidates prior to training They are not sampled prior to training. This is a tf.data.Dataset, which is a pipeline. The code above...

This was fixed in https://github.com/tensorflow/recommenders/pull/549, but hasn't made it to a versioned release, cc: @maciejkula. The quickest fix for you at this time is to install the package via git....