From 7adffc5361b921e36a8c60a8072c9126650311c4 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Tue, 28 Jul 2020 23:12:47 +0200 Subject: [PATCH] Remove unused schema --- spacy/schemas.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/spacy/schemas.py b/spacy/schemas.py index 3f3c01f22..971d283e2 100644 --- a/spacy/schemas.py +++ b/spacy/schemas.py @@ -171,17 +171,6 @@ class ModelMetaSchema(BaseModel): # fmt: on -# JSON training format - - -class TrainingSchema(BaseModel): - # TODO: write - - class Config: - title = "Schema for training data in spaCy's JSON format" - extra = "forbid" - - # Config schema # We're not setting any defaults here (which is too messy) and are making all # fields required, so we can raise validation errors for missing values. To