소스 검색

Tuple, not list.

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
c198ce27a7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      earwigbot/wiki/copyvios/markov.py

+ 1
- 1
earwigbot/wiki/copyvios/markov.py 파일 보기

@@ -40,7 +40,7 @@ class MarkovChain(object):
words = ([self.START] * padding) + words + ([self.END] * padding)
for i in range(len(words) - self.degree + 1):
last = i + self.degree - 1
self.chain[words[i:last]][words[last]] += 1
self.chain[tuple(words[i:last])][words[last]] += 1

def __repr__(self):
"""Return the canonical string representation of the MarkovChain."""


불러오는 중...
취소
저장