新闻中的Hatespeech分类
获取数据集并将其放在data/
生成数据集
python bin/create_dataset.py data/articles.json data/comments.json --train_path data/train.json --test_path data/test.json
火车模型
一,简单的仇恨分类器
# Train non-contextualized model
python bin/train_hate_classifier.py --output_path models/bert-non-contextualized-hate-speech-es/ --epochs 10
python bin/train_category_classifier.py --output_path models/bert-non-contextua
1