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")
指摘事項
指摘箇所
ページ番号: p107
実行環境
pip freeze
の実行結果 (下に添付)エラー内容
細かいですが p107 の最後
となっていますが,正しくは
(
implementsimplement,estimateinitialize)あとこういう場合は Exception ではなく NotImplementedError を使ったほうが良いと思います.