AzizIlyosov
AzizIlyosov
@amit-timalsina I guess, that model is implemented in softmax model section of this [colab](https://colab.research.google.com/github/google/eng-edu/blob/main/ml/recommendation-systems/recommendation-systems.ipynb?utm_source=ss-recommendation-systems&utm_campaign=colab-external&utm_medium=referral&utm_content=recommendation-systems#scrollTo=4OKzworlo4ue)
I have same problem too
@patrickorlando thanks for your answer. Validation/training was randomly split with 20/80 ratio randomly . The thing I am wondering is that why accuracy is increasing parallelly with epoch validation loss?
I think you can find them from here : [multitask recommendation ](https://www.tensorflow.org/recommenders/examples/multitask) , [side features ](https://www.tensorflow.org/recommenders/examples/featurization)
I think it is not good idea to use embedding for low dimensional features , just make one-hot encoding vector using CategoryEncoding ``` self.make_categorical_gender = tf.keras.Sequential([ tf.keras.layers.StringLookup( vocabulary=number_of_tokens, mask_token=None), tf.keras.layers.CategoryEncoding(...