We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 の 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
ValueError: Unknown layer: KerasLayer
"import tensorflow_hub as hub" が無いと次のエラーが出力される。(新規ノートに書いた場合) NameError: name 'hub' is not defined
NameError: name 'hub' is not defined
コメント
GitHub のソースを使う前提のようですので、”import tensorflow_hub as hub" は、冗長であれば外してください。
The text was updated successfully, but these errors were encountered:
@renkin3q さん ご指摘ありがとうございます。
@KazumaAndoh さん 指摘の通り、紙面とコードで食い違っておりました。指摘の通りですので、正誤表に追加で良いでしょうか?
Sorry, something went wrong.
正誤表に追記しましたのでcloseします。
KazumaAndoh
karaage0703
No branches or pull requests
ページ数
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" は、冗長であれば外してください。
The text was updated successfully, but these errors were encountered: