You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s ="Admirez le pouvoir insigne Et la noblesse de la ligne : Elle est la voix que la lumiere fit entendre Et dont parle Hermes Trismegiste en son Pimandre."
def generate_ngrams(s, n):
s = s.lower()
s = re.sub(r'[^a-zA-Z0-9\s]', ' ', s)
tokens = [token for token in s.split(" ") if token != ""]