Skip to content

Instantly share code, notes, and snippets.

@bahrammp
Created August 23, 2018 16:04
Show Gist options
  • Save bahrammp/507004d8d310057835bc23503467a769 to your computer and use it in GitHub Desktop.
Save bahrammp/507004d8d310057835bc23503467a769 to your computer and use it in GitHub Desktop.
itos = [o for o,c in freq.most_common(max_vocab) if c>min_freq]
itos.insert(0, '_pad_')
itos.insert(0, '_unk_')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment