Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

in Keras 2.2.0 model have different layer index #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions cnn_class2/style_transfer3.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def load_img_and_preprocess(path, shape=None):
# create the content model
# we only want 1 output
# remember you can call vgg.summary() to see a list of layers
# 1,2,4,5,7-9,11-13,15-17
content_model = Model(vgg.input, vgg.layers[13].get_output_at(1))
# 0,1,3,4,6-8,10-12,14-16
content_model = Model(vgg.input, vgg.layers[12].get_output_at(1))
content_target = K.variable(content_model.predict(content_img))


Expand Down