From 59c303d198d04a2be2c6fd78cbf3ea48fb0dd1d1 Mon Sep 17 00:00:00 2001 From: Huy Vo <134928960+vkhuy@users.noreply.github.com> Date: Mon, 27 Jan 2025 19:49:39 +0700 Subject: [PATCH] Adjust to correct C3_W2_RecSysNN_Assignment.ipynb --- .../week2/C3W2/C3W2A2/C3_W2_RecSysNN_Assignment.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C3 - Unsupervised Learning, Recommenders, Reinforcement Learning/week2/C3W2/C3W2A2/C3_W2_RecSysNN_Assignment.ipynb b/C3 - Unsupervised Learning, Recommenders, Reinforcement Learning/week2/C3W2/C3W2A2/C3_W2_RecSysNN_Assignment.ipynb index dc47f7f2..ec23e5a9 100644 --- a/C3 - Unsupervised Learning, Recommenders, Reinforcement Learning/week2/C3W2/C3W2A2/C3_W2_RecSysNN_Assignment.ipynb +++ b/C3 - Unsupervised Learning, Recommenders, Reinforcement Learning/week2/C3W2/C3W2A2/C3_W2_RecSysNN_Assignment.ipynb @@ -466,7 +466,7 @@ "output = tf.keras.layers.Dot(axes=1)([vu, vm])\n", "\n", "# specify the inputs and output of the model\n", - "model = Model([input_user, input_item], output)\n", + "model = tf.keras.Model([input_user, input_item], output)\n", "\n", "model.summary()" ]