Created
February 26, 2018 20:16
-
-
Save mbednarski/3c3c269944ad22a0b40c3aa956dd9ab9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def tokenize_corpus(corpus): | |
| tokens = [x.split() for x in corpus] | |
| return tokens |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment