Hi Ines,
Sorry to bother you again! I've gotten as far as trying to train the model but I keep getting an error about the --output
argument... I'm assuming this must also have to do with deprecation but I haven't been able to find that info online.
I am running:
!python -m prodigy train insults --output insults-model --eval-split 0.2
and get the error:
click.exceptions.NoSuchOption: no such option: --output
I also tried to run it using en_core_web_sm
like you did the "Training an Insults Classifier" video, but then I get the erorr:
Invalid config override 'en_core_web_sm': name should start with --
Is using en_core_web_sm
, en_core_web_lg
, etc necessary for this step? If so, how do I get it to work when running the command? adding --
before the argument does not seem to work
On another note, I got to this point following your advice in this thread by using two labels (insult and non_insult) because I wasn't able to get the textcat_multilabel
argument working. Would you be able to help with this as well?
I run the command:
!python -m prodigy textcat.teach insults en_core_web_sm RC_2010-01.bz2 --loader reddit --textcat_multilabel INSULT --patterns insult_seeds.jsonl
and get the error:
prodigy textcat.teach: error: unrecognized arguments: --textcat_multilabel INSULT
Maybe I am using textcat_multilabel
incorrectly?