From 743f98082dd627603601487a9f807596103a97be Mon Sep 17 00:00:00 2001 From: John Agapiou Date: Thu, 7 Dec 2023 06:35:35 -0800 Subject: [PATCH] Don't pass model argument PiperOrigin-RevId: 588773264 Change-Id: Ic9f971f6e2d709bcd2359999be05b56cb9d46a29 --- examples/three_key_questions.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/three_key_questions.ipynb b/examples/three_key_questions.ipynb index 99775c19..a2d6482a 100644 --- a/examples/three_key_questions.ipynb +++ b/examples/three_key_questions.ipynb @@ -175,7 +175,7 @@ "outputs": [], "source": [ "#@title Importance models\n", - "importance_model = importance_function.ConstantImportanceModel(model)\n", + "importance_model = importance_function.ConstantImportanceModel()\n", "importance_model_gm = importance_function.ConstantImportanceModel()\n" ] },