Is it possible to use the spacy-api-docker image also to train data? For example I want to send training data for custom entities like:
TRAIN_DATA = [
(
"Horses are too tall and they pretend to care about your feelings",
{"entities": [(0, 6, MY_ANIMAL)]},
),
("Do they bite?", {"entities": []}),
(
"horses are too tall and they pretend to care about your feelings",
{"entities": [(0, 6, MY_ANIMAL)]},
),
]
Is it possible to use the spacy-api-docker image also to train data? For example I want to send training data for custom entities like: