Restore use of batch norm in model

This commit is contained in:
Matthew Honnibal 2017-08-22 17:01:58 -05:00
parent 1fe605dfe5
commit a4633fff6f

View File

@ -236,7 +236,7 @@ def Tok2Vec(width, embed_size, preprocess=None):
>> uniqued(embed, column=5)
>> drop_layer(
Residual(
(ExtractWindow(nW=1) >> ReLu(width, width*3))
(ExtractWindow(nW=1) >> BN(Maxout(width, width*3)))
)
) ** 4, pad=4
)