AzizIlyosov

Results 2 issues of AzizIlyosov

During training my model, I am facing some issues to stop training on right time. ![image](https://user-images.githubusercontent.com/29056416/158352804-ba7c8239-0121-44ab-95a8-0484c6337429.png) **Image-1** Green -- validation , pink -- training ![image](https://user-images.githubusercontent.com/29056416/158353364-f6ca34c1-f20a-4ecd-9bc6-10b63f7bb778.png) **Image-2** Green -- validation ,...

question

Following [two tower model tutorial ](https://colab.research.google.com/github/tensorflow/recommenders/blob/main/docs/examples/deep_recommenders.ipynb) I made my model . Then I trained it one epoch and evaluated model ``` cached_train = train.shuffle(100_000).batch(4096) cached_test = test.batch(4096).cache() model = Model(...