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
Hi,
In cleaning function in the script : nlp-tutorial/news-category-classifcation/preprocessing.py,
line 21 is written as text = re.sub(r'[!]{2,}', '?', text) # multiple ?s -> ?. There should be ? in first argument and It should be text = re.sub(r'[?]{2,}', '?', text) # multiple ?s -> ?.
Am I correct?
The text was updated successfully, but these errors were encountered:
Hi,
In cleaning function in the script :
nlp-tutorial/news-category-classifcation/preprocessing.py
,line 21 is written as
text = re.sub(r'[!]{2,}', '?', text) # multiple ?s -> ?
. There should be ? in first argument and It should betext = re.sub(r'[?]{2,}', '?', text) # multiple ?s -> ?
.Am I correct?
The text was updated successfully, but these errors were encountered: