Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- fgs218ok/WikiEditBias
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
---
|
8 |
+
|
9 |
+
# Model Card for distilRoberta model finetuned on WikiEditBias dataset
|
10 |
+
|
11 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
12 |
+
|
13 |
+
The [distilRoberta-base](distilbert/distilroberta-base) model finetuned on WikiEditBias dataset on the format of edit diff data and 200k samples.
|
14 |
+
|
15 |
+
## Uses
|
16 |
+
|
17 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
18 |
+
|
19 |
+
### Direct Use
|
20 |
+
|
21 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
22 |
+
```
|
23 |
+
model = AutoModel.from_pretrained("fgs218ok/WikiEditBias200k")
|
24 |
+
tokenizer = AutoTokenizer.from_pretrained("fgs218ok/WikiEditBias200k")
|
25 |
+
```
|
26 |
+
|
27 |
+
## Evaluation
|
28 |
+
|
29 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
30 |
+
This model achieves the 83.45% accuracy on fgs218ok/WikiEditBias200k dataset, outperforms GPT-3.5-turbo by large margin while competitive to GPT4o:
|
31 |
+
|
32 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6661e0ac10021fc434ad8e72/aIFVHPOTc4NtQ9I3krjI7.png)
|