Increase default embed size to 7500

This commit is contained in:
Matthew Honnibal 2017-05-23 15:20:16 -05:00
parent 8026c183d0
commit 5b67bcbee0
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class TokenVectorEncoder(object):
name = 'tok2vec'
@classmethod
def Model(cls, width=128, embed_size=5000, **cfg):
def Model(cls, width=128, embed_size=7500, **cfg):
"""Create a new statistical model for the class.
width (int): Output size of the model.