Spaces:
Runtime error
Runtime error
Commit ·
fd66c88
1
Parent(s): 4247d7d
Bug fix
Browse files- preprocess.py +1 -2
preprocess.py
CHANGED
|
@@ -19,5 +19,4 @@ def clean_text(text):
|
|
| 19 |
return " ".join(tokens)
|
| 20 |
|
| 21 |
def preprocess_pipeline(text):
|
| 22 |
-
|
| 23 |
-
return cleaned_text
|
|
|
|
| 19 |
return " ".join(tokens)
|
| 20 |
|
| 21 |
def preprocess_pipeline(text):
|
| 22 |
+
return clean_text(text)
|
|
|