0
0

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.

「詳解 ディープラーニング」の間違い

Last updated at Posted at 2019-09-20

書籍

詳解 ディープラーニング

注意書き

一部しか試していないので、すべてを網羅しているとは限りません。

間違い

P.175

修正前.py
def evaluate(self, X_test, Y_test):
  # 中略
  return self.accuracy.eval(session=self._sess, feed_dict={
  # 以下略
修正後.py
def evaluate(self, X_test, Y_test):
  # 中略
  return accuracy.eval(session=self._sess, feed_dict={
  # 以下略

エラーメッセージ
'function' object has no attribute 'eval'

他の間違いなど

「詳解 ディープラーニング」サポートサイト

0
0
2

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?