I'm having a bit of trouble with the text classification feature of Prodigy.
Recently, I created my own .jsonl dataset of news article texts to be manually classified into custom labels/categories. There are 20 lines of texts with their sources. For example:
{"text":"One of the reasons Trump lost his re-election bid is that the American people were tired β not only of the daily chaos and his non-stop tweets, but they knew he made up a lot of things and they lost trust in him.","meta":{"source":"The Hill"}},
After creating this dataset, I put the following code in the terminal:
prodigy textcat.manual news_articles ./article_texts.jsonl --label Honesty,Economic Management,Relations,Integrity
However, it failed to open and it didn't work.
I feel like I might be doing something wrong and I would love if to get some insight on how to fix my problem.