txlyre 6 mesi fa
parent
commit
fd9ddc1db9
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5 1
      markov.py

+ 5 - 1
markov.py

@@ -28,7 +28,11 @@ class Markov:
         if not words:
             return self.generate()
 
-        return " ".join(words)
+        text = " ".join(words)
+        text = re.sub(r"(?:^| )?((\.{2,})|(\!{2,})|(\?{2,})|([.?!,:;\(\)\"'\$\+\-–—]))(?: |$)", r"\1 ", text)
+        text = text.strip()
+
+        return text
 
     def rebuild(self):
         self.chain = markovify.Chain(self.corpus, config.MARKOV_STATE_SIZE).compile()