2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kerasで学習したモデルをUnityで使う時の注意点

Posted at

Kerasで学習したモデルをUnityへ

Unity内でエラーが出ましたので
見つけた対処法をまとめます

1.Kerasで出力ノードの名前をyにしました

predictions = Dense(16, activation='softmax', name='y')(x) ##出力ノード名をyに

このままUnity内で、出力ノード名をyで設定したところ

NullReferenceException: Object reference not set to an instance of an object

このようなエラーが出て動きませんでした

2.学習済みモデルをテキストで書き出して中を見ると

errocapr.jpg
出力ノード名が"y/Softmax"に書き換わっています

3.Unity内で出力ノード名を書き直します

調べた結果に合わせて、出力ノード名を"y/Softmax"にしたところ
エラーはでなくなりました

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?