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
In the function clean_googlengram the following if statement is used. The statements have no overlap as when tag == "." it would still evaluate to true as tag != "PUNCT". Probably and should be used here.
iftag!='PUNCT'ortag!='.'ortag!='':
The text was updated successfully, but these errors were encountered:
In the function
clean_googlengram
the following if statement is used. The statements have no overlap as whentag == "."
it would still evaluate to true astag != "PUNCT"
. Probablyand
should be used here.The text was updated successfully, but these errors were encountered: