I am trying to build one recommendation model similar to this example. But this example uses Tensorflow v2.4.0 and for my work, I need to use v2.1.0. It seems that the StringLookUp layer does not exist in v2.1.0. Is there any equivalent way to achieve the exact same thing in 2.1.0? I need to use this in such a model:
user_model = tf.keras.Sequential([
tf.keras.layers.experimental.preprocessing.StringLookup(
vocabulary=unique_user_ids, mask_token=None),
tf.keras.layers.Embedding(len(unique_user_ids) + 1, embedding_dimension)
])