Skip to content

Commit

Permalink
PR comment correction (in progress)
Browse files Browse the repository at this point in the history
  • Loading branch information
gouda-youichi committed Feb 3, 2025
1 parent 67b78b5 commit 722380b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
"\n",
"MCT’s `quantization_info` stores the threshold values for each layer. However, to view the actual activation distributions, the model needs to be reconstructed up to and including the target layer selected for visualization.\n",
"\n",
"To do this, we first need to identify the layer names. In Keras, this can be easily done for the first 10 layers using the following code snippet."
"To do this, we first need to identify the layer names. "
]
},
{
Expand All @@ -353,8 +353,8 @@
"outputs": [],
"source": [
"for index, (name, layer) in enumerate(float_model.named_modules()):\n",
" if index < 10:\n",
" print(name, layer)\n",
" if index < 14:\n",
" print(name)\n",
" else:\n",
" break"
]
Expand Down

0 comments on commit 722380b

Please sign in to comment.