From 4b311bcae7b09c56f8d715d7623965b5812a17f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Mon, 30 Jan 2023 15:50:44 +0100 Subject: [PATCH] Fix descripion of max_epochs --- spacy/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/schemas.py b/spacy/schemas.py index ea113fd7b..51b64580d 100644 --- a/spacy/schemas.py +++ b/spacy/schemas.py @@ -415,7 +415,7 @@ class ConfigSchemaDistill(BaseModel): batcher: Batcher = Field(..., title="Batcher for the training data") corpus: StrictStr = Field(..., title="Path in the config to the distillation data") 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") optimizer: Optimizer = Field(..., title="The optimizer to use") pipe_map: Dict[str, str] = Field(..., title="Mapping from teacher to student pipe")