diff --git a/.gitignore b/.gitignore index 6afa40f38..d9e75a229 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ Profile.prof .Python .python-version __pycache__/ +.pytest_cache *.py[cod] .env/ .env* diff --git a/examples/training/train_new_entity_type.py b/examples/training/train_new_entity_type.py index 7e1b19c0e..b2b1c656d 100644 --- a/examples/training/train_new_entity_type.py +++ b/examples/training/train_new_entity_type.py @@ -98,8 +98,6 @@ def main(model=None, new_model_name='animal', output_dir=None, n_iter=20): # existing entity types. optimizer = nlp.entity.create_optimizer() - - # get names of other pipes to disable them during training other_pipes = [pipe for pipe in nlp.pipe_names if pipe != 'ner'] with nlp.disable_pipes(*other_pipes): # only train NER