Carlos Rodriguez
Results
1
comments of
Carlos Rodriguez
I think the offending option that destroys everything that is not an English character is: def preprocess_emojis(self, tweet_string, repl): processed = Patterns.EMOJIS_PATTERN.sub(repl, tweet_string) return processed.encode('ascii', 'ignore').decode('ascii') There should be a...