mirror of https://github.com/explosion/spaCy.git
Fix low-data textcat
This commit is contained in:
parent
9e378bdac5
commit
c0eaba8b28
|
@ -517,7 +517,9 @@ def build_text_classifier(nr_class, width=64, **cfg):
|
||||||
model = (
|
model = (
|
||||||
SpacyVectors
|
SpacyVectors
|
||||||
>> flatten_add_lengths
|
>> flatten_add_lengths
|
||||||
>> with_getitem(0, LN(Affine(width, 300)))
|
>> with_getitem(0,
|
||||||
|
Affine(width, 300)
|
||||||
|
)
|
||||||
>> ParametricAttention(width)
|
>> ParametricAttention(width)
|
||||||
>> Pooling(sum_pool)
|
>> Pooling(sum_pool)
|
||||||
>> Residual(ReLu(width, width)) ** 2
|
>> Residual(ReLu(width, width)) ** 2
|
||||||
|
|
Loading…
Reference in New Issue