Help with --binary flag

@jpz129 @paulterhorst Sorry about that, this is very strange! I wonder if there's a recent update in spaCy that makes a difference here :thinking: Anyway, as a quick fix, try the following:

  • Find your Prodigy installation (you can run prodigy stats to print the path) and open recipes/train.py.
  • Find the following two lines and swap them (so that you're calling disable_pipes before creating the annotation model):
annot_model = get_annot_model(component, nlp, labels) if binary else None
disabled = nlp.disable_pipes([p for p in nlp.pipe_names if p != component])