bhavyagiri commited on
Commit
b477f51
·
1 Parent(s): 7bdd91a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -3
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: apache-2.0
3
  datasets:
4
  - bhavyagiri/imdb-spoiler
5
  language:
@@ -9,5 +9,23 @@ metrics:
9
  - f1
10
  pipeline_tag: text-classification
11
  tags:
12
- - code
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
  datasets:
4
  - bhavyagiri/imdb-spoiler
5
  language:
 
9
  - f1
10
  pipeline_tag: text-classification
11
  tags:
12
+ - text-classification
13
+ - pytorch
14
+ - roberta
15
+ - emotions
16
+ - multi-class-classification
17
+ - multi-label-classification
18
+ widget:
19
+ - text: Jack Ryan is so amazing
20
+ ---
21
+
22
+
23
+ The model trained from [roberta-base](https://huggingface.co/roberta-base) on the [imdb-spoiler](https://huggingface.co/datasets/bhavyagiri/imdb-spoiler) dataset for classification.
24
+
25
+ [imdb-spoiler](https://huggingface.co/datasets/bhavyagiri/imdb-spoiler) is a subset of a [large-dataset](https://www.kaggle.com/datasets/rmisra/imdb-spoiler-dataset) for classifying whether a movie review is a spoiler or not.
26
+
27
+ The model was trained using `AutoModelForSequenceClassification.from_pretrained` for 3 epochs with a learning rate of 2e-5 and weight decay of 0.01.
28
+
29
+ Evaluation (of the 28 dim output via a threshold of 0.5 to binarize each) using the dataset test split gives:
30
+ - F1 0.585
31
+ - Accuracy 0.474