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

P.97: load_model() の引数がソースと紙面で異なる #6

Closed
renkin3q opened this issue Dec 31, 2020 · 2 comments
Closed

P.97: load_model() の引数がソースと紙面で異なる #6

renkin3q opened this issue Dec 31, 2020 · 2 comments
Assignees
Labels

Comments

@renkin3q
Copy link

renkin3q commented Dec 31, 2020

ページ数

P.97 の 1 行目

内容

誤:keras_model = tf.keras.models.load_model("efficientnet_model.h5")
正:
import tensorflow_hub as hub
keras_model = tf.keras.models.load_model("efficientnet_model.h5", custom_objects={'KerasLayer':hub.KerasLayer})

  • 引数 custom_objects が無いと次のエラーが出力される。
    ValueError: Unknown layer: KerasLayer

  • "import tensorflow_hub as hub" が無いと次のエラーが出力される。(新規ノートに書いた場合)
    NameError: name 'hub' is not defined

コメント

GitHub のソースを使う前提のようですので、”import tensorflow_hub as hub" は、冗長であれば外してください。

@karaage0703
Copy link
Owner

@renkin3q さん
ご指摘ありがとうございます。

@KazumaAndoh さん
指摘の通り、紙面とコードで食い違っておりました。指摘の通りですので、正誤表に追加で良いでしょうか?

@karaage0703
Copy link
Owner

正誤表に追記しましたのでcloseします。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants