From cc022686c2cd8566a0ce4b2aed371c3dffc88b14 Mon Sep 17 00:00:00 2001 From: KikiCS Date: Thu, 29 Dec 2022 12:34:06 +0100 Subject: [PATCH] bugfix to 15_arch_details.ipynb create_body call I run this notebook in Google colab and got an error when using simply the model name as the input to `create_body` function. Since children can be called from the function form, I added the parentheses in the notebook, so `encoder = create_body(resnet34, cut=-2)` became `encoder = create_body(resnet34(), cut=-2)` and the notebook runs fine. --- 15_arch_details.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_arch_details.ipynb b/15_arch_details.ipynb index 2189794..ee9d847 100644 --- a/15_arch_details.ipynb +++ b/15_arch_details.ipynb @@ -343,7 +343,7 @@ "metadata": {}, "outputs": [], "source": [ - "encoder = create_body(resnet34, cut=-2)" + "encoder = create_body(resnet34(), cut=-2)" ] }, {