icoxfog417 / baby-steps-of-rl-ja

Pythonで学ぶ強化学習 -入門から実践まで- サンプルコード
Apache License 2.0
431 stars 262 forks source link

p107 コード #11

Closed mori97 closed 5 years ago

mori97 commented 5 years ago

指摘事項

指摘箇所

ページ番号: p107

実行環境

エラー内容

細かいですが p107 の最後

def initialize(self, experiences):
    raise Exception("You have to implements estimate method")

def estimate(self, s):
    raise Exception("You have to implements estimate method")

となっていますが,正しくは

def initialize(self, experiences):
    raise Exception("You have to implement initialize method")

def estimate(self, s):
    raise Exception("You have to implement estimate method")

(implements implement,estimate initialize)

あとこういう場合は Exception ではなく NotImplementedError を使ったほうが良いと思います.