You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Me and a couple of other master degree students are working on a project to use Errudite for the improvement of an hate speech classifier.
After reviewing the code we assume our first step is, that since there is only a QA and VQA detector that we need to register our own. After that we want to customise the dataset reader and predictor. We also want to modify the UI so that values like "EM" and "Sent", which aren't applicable to hate speech detection, are no longer displayed. As of now we assume that this requires a modification of the Errudite server about how the requests and responses are handled.
Are there steps you would recommend us to get this done?
The text was updated successfully, but these errors were encountered:
Hi there!
You are right, if you want to modify the UI, you will also need to update the server. However, I wouldn't recommend modifying the UI, mainly because we didn't expect the frontend code to be customized -- It was meant to just work for QA and VQA. As such, that part of code is not as documented as the backend code. To modify these codes, there will be quite some additional setup steps for npm, typescript, etc., and some more code to read and understand -- which could be overwhelming.
Instead, I would suggest sticking to the notebook version of Errudite -- It has most of the functions wrapped, except for query command auto-completion. You are right, you will need to build your hate speech detection classifiers, and dataset readers. The best way to learn it is to go through the notebook tutorial.
The three tutorials explain the end-to-end procedure of extending Errudite for Natural Language Inference (NLI); I believe you will go through very similar steps for hate speech detection, as they are both text classification tasks (only that NLI has one more input sentence target.)
If you run into any issues, please let me know! I'm also happy to work closely with you to make it work.
Me and a couple of other master degree students are working on a project to use Errudite for the improvement of an hate speech classifier.
After reviewing the code we assume our first step is, that since there is only a QA and VQA detector that we need to register our own. After that we want to customise the dataset reader and predictor. We also want to modify the UI so that values like "EM" and "Sent", which aren't applicable to hate speech detection, are no longer displayed. As of now we assume that this requires a modification of the Errudite server about how the requests and responses are handled.
Are there steps you would recommend us to get this done?
The text was updated successfully, but these errors were encountered: