Files
tchap-beta/markov.py
2026-02-04 18:35:38 +01:00

24 lines
872 B
Python
Executable File

from collections import defaultdict
from random import choice, randrange
suivants = defaultdict(list)
with open("fra_wikipedia_2021_10K-sentences.txt", "r", encoding="utf-8") as fichier:
for phrase in fichier:
antepenultieme, penultieme = "", ""
for word in phrase.split():
suivants[(antepenultieme, penultieme)].append(word)
antepenultieme, penultieme = penultieme, word
def parle():
phrases = []
for _ in range(randrange(1, 4)):
antepenultieme, penultieme = "", ""
phrase = []
while mots_possibles := suivants[(antepenultieme, penultieme)]:
mot_suivants = choice(mots_possibles)
phrase.append(mot_suivants)
antepenultieme, penultieme = penultieme, mot_suivants
phrases.append(" ".join(phrase))
return "\n".join(phrases)