ytsaig commited on
Commit
23dae38
·
1 Parent(s): bab4ff9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -1 +1,17 @@
1
- This model uses pretrained weights from distilbert-base-uncased and fine tunes the classification head to the manually annotated news corpus. Long articles are chunked in order to fit in the 512 token limit.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - valurank/news-small
5
+ ---
6
+
7
+ # DistilROBERTA fine-tuned for news classification
8
+
9
+ This model is based on [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) pretrained weights, with a classification head fine-tuned to classify news articles into 3 categories (bad, medium, good).
10
+
11
+ ## Training data
12
+
13
+ The dataset used to fine-tune the model is [news-small](https://huggingface.co/datasets/valurank/news-small), the 300 article news dataset manually annotated by Alex.
14
+
15
+ ## Inputs
16
+
17
+ Similar to its base model, this model accepts inputs with a maximum length of 512 tokens.