What comes after predict?

I am learning tensorflow from online, and I wrote my own model but faced a problem.

What I want to try is

Above csv is the timeline with korean menu. Timeline format is monthdayhourmins. If user put the new date in the next year, I wants model to predict the menu that is in the past with closest date.

Colab link

I came along til predict, but not sure I can print out the predicted text.

Please help!

You can use np.argmax(model.predict(x), axis=-1) function to predict the desired output.