mirror of
https://github.com/explosion/spaCy.git
synced 2025-08-02 11:20:19 +03:00
Fix descripion of max_epochs
This commit is contained in:
parent
6e20b506a0
commit
4b311bcae7
|
@ -415,7 +415,7 @@ class ConfigSchemaDistill(BaseModel):
|
||||||
batcher: Batcher = Field(..., title="Batcher for the training data")
|
batcher: Batcher = Field(..., title="Batcher for the training data")
|
||||||
corpus: StrictStr = Field(..., title="Path in the config to the distillation data")
|
corpus: StrictStr = Field(..., title="Path in the config to the distillation data")
|
||||||
dropout: StrictFloat = Field(..., title="Dropout rate")
|
dropout: StrictFloat = Field(..., title="Dropout rate")
|
||||||
max_epochs: StrictInt = Field(..., title="Maximum number of steps to distill for")
|
max_epochs: StrictInt = Field(..., title="Maximum number of epochs to distill for")
|
||||||
max_steps: StrictInt = Field(..., title="Maximum number of steps to distill for")
|
max_steps: StrictInt = Field(..., title="Maximum number of steps to distill for")
|
||||||
optimizer: Optimizer = Field(..., title="The optimizer to use")
|
optimizer: Optimizer = Field(..., title="The optimizer to use")
|
||||||
pipe_map: Dict[str, str] = Field(..., title="Mapping from teacher to student pipe")
|
pipe_map: Dict[str, str] = Field(..., title="Mapping from teacher to student pipe")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user