Explorar el Código

Tuple, not list.

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
c198ce27a7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/wiki/copyvios/markov.py

+ 1
- 1
earwigbot/wiki/copyvios/markov.py Ver fichero

@@ -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."""


Cargando…
Cancelar
Guardar