Testing how much case impacts performance

Signed-off-by: Jacob Torrey <jacob@thinkst.com>
pull/6/head
Jacob Torrey 2023-05-24 15:25:52 -06:00
rodzic 2179778dcf
commit fb8bdad916
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ def clean_text(s : str) -> str:
s = re.sub(' \n', '\n', s)
# Remove non-alphanumeric chars
s = re.sub('[^0-9A-Za-z,\.\(\) \n]', '', s).lower()
s = re.sub('[^0-9A-Za-z,\.\(\) \n]', '', s)#.lower()
return s