mirror of https://github.com/explosion/spaCy.git
Correct parser.py use_upper param info (#9180)
This commit is contained in:
parent
aba6ce3a43
commit
462b009648
|
@ -56,7 +56,7 @@ def build_tb_parser_model(
|
||||||
non-linearity if use_upper=False.
|
non-linearity if use_upper=False.
|
||||||
use_upper (bool): Whether to use an additional hidden layer after the state
|
use_upper (bool): Whether to use an additional hidden layer after the state
|
||||||
vector in order to predict the action scores. It is recommended to set
|
vector in order to predict the action scores. It is recommended to set
|
||||||
this to False for large pretrained models such as transformers, and False
|
this to False for large pretrained models such as transformers, and True
|
||||||
for smaller networks. The upper layer is computed on CPU, which becomes
|
for smaller networks. The upper layer is computed on CPU, which becomes
|
||||||
a bottleneck on larger GPU-based models, where it's also less necessary.
|
a bottleneck on larger GPU-based models, where it's also less necessary.
|
||||||
nO (int or None): The number of actions the model will predict between.
|
nO (int or None): The number of actions the model will predict between.
|
||||||
|
|
Loading…
Reference in New Issue