Created
May 9, 2019 15:58
-
-
Save gaphex/2b7312f5537b5cf538119d0a2c348eab 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
| VOC_FNAME = "vocab.txt" #@param {type:"string"} | |
| with open(VOC_FNAME, "w") as fo: | |
| for token in bert_vocab: | |
| fo.write(token+"\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment