Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix input in layer name. #67

Merged
merged 1 commit into from
Jul 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ml/pc/exercises/image_classification_part1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@
"successive_feature_maps = visualization_model.predict(x)\n",
"\n",
"# These are the names of the layers, so can have them as part of our plot\n",
"layer_names = [layer.name for layer in model.layers]\n",
"layer_names = [layer.name for layer in model.layers[1:]]\n",
"\n",
"# Now let's display our representations\n",
"for layer_name, feature_map in zip(layer_names, successive_feature_maps):\n",
Expand Down