txlyre vor 6 Monaten
Ursprung
Commit
fd9ddc1db9
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  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()