mirror of https://github.com/explosion/spaCy.git
Relax model meta performance schema (#6185)
Allow more embedded per_x in `ModelMetaSchema`
This commit is contained in:
parent
09dcb75076
commit
62ccd5c4df
|
@ -282,7 +282,7 @@ class ModelMetaSchema(BaseModel):
|
|||
sources: Optional[Union[List[StrictStr], List[Dict[str, str]]]] = Field(None, title="Training data sources")
|
||||
vectors: Dict[str, Any] = Field({}, title="Included word vectors")
|
||||
labels: Dict[str, List[str]] = Field({}, title="Component labels, keyed by component name")
|
||||
performance: Dict[str, Union[float, Dict[str, float]]] = Field({}, title="Accuracy and speed numbers")
|
||||
performance: Dict[str, Union[float, Dict[str, Union[float, dict]]]] = Field({}, title="Accuracy and speed numbers")
|
||||
spacy_git_version: StrictStr = Field("", title="Commit of spaCy version used")
|
||||
# fmt: on
|
||||
|
||||
|
|
Loading…
Reference in New Issue