From 3da1e4f1b861f3501b0b27c941b223747dd8501e Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sun, 17 Nov 2019 17:01:10 +0100 Subject: [PATCH] fix(lstm): No space --- KoozDawa/dawa/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KoozDawa/dawa/loader.py b/KoozDawa/dawa/loader.py index 31c3b88..a85ecfc 100644 --- a/KoozDawa/dawa/loader.py +++ b/KoozDawa/dawa/loader.py @@ -28,7 +28,7 @@ def clean_text(lines): In dataset preparation step, we will first perform text cleaning of the data which includes removal of punctuations and lower casing all the words. """ - lines = " ".join(v for v in lines if v not in string.punctuation).lower() + lines = "".join(v for v in lines if v not in string.punctuation).lower() lines = lines.encode("utf8").decode("ascii", 'ignore') return lines -- libgit2 0.27.0