ytsaig commited on
Commit
51bf43d
1 Parent(s): e8a193d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -1,2 +1,15 @@
1
- This model uses pretrained distilroberta-base weights, fine tuned on the WNC wiki edits corpus to detect biased language. See https://github.com/rpryzant/neutralizing-bias for more details.
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - valurank/wikirev-bias
5
+ ---
6
+ # DistilROBERTA fine-tuned for bias detection
7
+
8
+ This model is based on [distilroberta-base](https://huggingface.co/distilroberta-base) pretrained weights, with a classification head fine-tuned to classify text into 2 categories (neutral, biased).
9
+
10
+ ## Training data
11
+ The dataset used to fine-tune the model is [wikirev-bias](https://huggingface.co/datasets/valurank/wikirev-bias), extracted from English wikipedia revisions, see https://github.com/rpryzant/neutralizing-bias for details on the WNC wiki edits corpus.
12
+
13
+ ## Inputs
14
+ Similar to its base model, this model accepts inputs with a maximum length of 512 tokens.
15