I am using textcat.manual. Here I don't need accept as I have enabled choice auto aceept.
Even I don't need reject and ignore. I just need the return button.
Is there a easy way to hide these 3 buttons?
I am using textcat.manual. Here I don't need accept as I have enabled choice auto aceept.
Even I don't need reject and ignore. I just need the return button.
Is there a easy way to hide these 3 buttons?
Hi vikrant06, have a look at the settings of your prodigy.json, see here: https://prodi.gy/docs/install#config
Try modifying this part:
"buttons": ["accept", "reject", "ignore", "undo"]
I am using prodigy.serve to trigger the app. So did this:
prodigy.serve("textcat.manual",
tagged_dataset_name,
raw_jsonl_path,
None,
None,
None,
labels,
True,
None,
port=port, show_stats = True
, choice_auto_accept = True
, buttons = ["undo"])
This didn't work. I can see all the 4 buttons.
Are you using Prodigy v1.10+? If so, also check that your prodigy.json
doesn't include any conflicting settings, otherwise, the setting here would be overwritten.
No I am using prodigy v1.9.9 and my prodigy.json is empty.
Also tried changing the prodigy.json but still it's showing 4 buttons
If you're using v1.9, that feature isn't available yet – it was only introduced in v1.10: https://prodi.gy/docs/changelog#v1.10.0