Instructions to use identrics/wasper_propaganda_classifier_en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use identrics/wasper_propaganda_classifier_en with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("mistralai/Mistral-7B-v0.1") model = PeftModel.from_pretrained(base_model, "identrics/wasper_propaganda_classifier_en") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -99,3 +99,16 @@ The data is carefully classified by domain experts based on our predetermined ta
|
|
| 99 |
|
| 100 |
The model was then tested on a smaller evaluation dataset, achieving an F1 score of
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
The model was then tested on a smaller evaluation dataset, achieving an F1 score of
|
| 101 |
|
| 102 |
+
## Citation
|
| 103 |
+
|
| 104 |
+
If you find our work useful, please consider citing WASPer:
|
| 105 |
+
|
| 106 |
+
```
|
| 107 |
+
@article{bai2024longwriter,
|
| 108 |
+
title={LongWriter: Unleashing 10,000+ Word Generation from Long Context LLMs},
|
| 109 |
+
author={Yushi Bai and Jiajie Zhang and Xin Lv and Linzhi Zheng and Siqi Zhu and Lei Hou and Yuxiao Dong and Jie Tang and Juanzi Li},
|
| 110 |
+
journal={arXiv preprint arXiv:2408.07055},
|
| 111 |
+
year={2024}
|
| 112 |
+
}
|
| 113 |
+
```
|
| 114 |
+
|