Skip to content

Commit

Permalink
Merge pull request #2258 from vaharoni:tutorial_quickstart_expert_fix
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 561491521
  • Loading branch information
copybara-github committed Aug 31, 2023
2 parents e4ab8e0 + 0fd6469 commit 96c420c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/en/tutorials/quickstart/advanced.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
"source": [
"class MyModel(Model):\n",
" def __init__(self):\n",
" super(MyModel, self).__init__()\n",
" super().__init__()\n",
" self.conv1 = Conv2D(32, 3, activation='relu')\n",
" self.flatten = Flatten()\n",
" self.d1 = Dense(128, activation='relu')\n",
Expand Down

0 comments on commit 96c420c

Please sign in to comment.