txlyre 6 달 전
부모
커밋
85dc62f950
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      markov.py

+ 2 - 1
markov.py

@@ -45,7 +45,8 @@ class Markov:
         text = filter(bool, text)
         text = list(text)
 
-        self.corpus.insert(0, text)
+        if text not in self.corpus:
+            self.corpus.insert(0, text)
 
         if len(self.corpus) > config.MARKOV_CORPUS_SIZE:
             self.corpus = self.corpus[: config.MARKOV_CORPUS_SIZE]