メソッド定義で、なぜ誰かが仮パラメータを仮パラメータリストamount
の定数と等しく設定するのでしょうか。PERMANENCE_INC
def increasePermanence(self, amount=PERMANENCE_INC):
""" Increases the permanence of this synapse. """
self.permanence = min(1.0, self.permanence+amount)
メソッド定義で、なぜ誰かが仮パラメータを仮パラメータリストamount
の定数と等しく設定するのでしょうか。PERMANENCE_INC
def increasePermanence(self, amount=PERMANENCE_INC):
""" Increases the permanence of this synapse. """
self.permanence = min(1.0, self.permanence+amount)