mirror of https://github.com/explosion/spaCy.git
Add non-linearity after history features
This commit is contained in:
parent
92c5d78b42
commit
d163115e91
|
@ -264,7 +264,8 @@ def HistoryFeatures(nr_class, hist_size=8, nr_dim=8):
|
||||||
return layerize(noop())
|
return layerize(noop())
|
||||||
embed_tables = [Embed(nr_dim, nr_class, column=i, name='embed%d')
|
embed_tables = [Embed(nr_dim, nr_class, column=i, name='embed%d')
|
||||||
for i in range(hist_size)]
|
for i in range(hist_size)]
|
||||||
embed = concatenate(*embed_tables)
|
embed = chain(concatenate(*embed_tables),
|
||||||
|
LN(Maxout(hist_size*nr_dim, hist_size*nr_dim)))
|
||||||
ops = embed.ops
|
ops = embed.ops
|
||||||
def add_history_fwd(vectors_hists, drop=0.):
|
def add_history_fwd(vectors_hists, drop=0.):
|
||||||
vectors, hist_ids = vectors_hists
|
vectors, hist_ids = vectors_hists
|
||||||
|
|
Loading…
Reference in New Issue