arnabdhar commited on
Commit
03bf20e
1 Parent(s): 3407670

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -13
README.md CHANGED
@@ -13,6 +13,8 @@ metrics:
13
  model-index:
14
  - name: GPT2-genre-detection
15
  results: []
 
 
16
  ---
17
 
18
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -26,19 +28,24 @@ It achieves the following results on the evaluation set:
26
  - Accuracy: 0.4593
27
  - Matthews Correlation: 0.1010
28
 
29
- ## Model description
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- More information needed
32
-
33
- ## Intended uses & limitations
34
-
35
- More information needed
36
-
37
- ## Training and evaluation data
38
-
39
- More information needed
40
-
41
- ## Training procedure
42
 
43
  ### Training hyperparameters
44
 
@@ -65,4 +72,4 @@ The following hyperparameters were used during training:
65
  - Transformers 4.36.2
66
  - Pytorch 2.1.0+cu121
67
  - Datasets 2.16.0
68
- - Tokenizers 0.15.0
 
13
  model-index:
14
  - name: GPT2-genre-detection
15
  results: []
16
+ library_name: transformers
17
+ pipeline_tag: text-classification
18
  ---
19
 
20
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
28
  - Accuracy: 0.4593
29
  - Matthews Correlation: 0.1010
30
 
31
+ ## description
32
+
33
+ [Data-Driven Science](https://huggingface.co/datadrivenscience) organized a competition where in the goal was to fine tune a model that can predict the genre of a movie from a given synopsis. There were a total of 10 genres as follows:
34
+ ```json
35
+ {
36
+ "0": "horror",
37
+ "1": "adventure",
38
+ "2": "action",
39
+ "3": "crime",
40
+ "4": "mystery",
41
+ "5": "family",
42
+ "6": "scifi",
43
+ "7": "thriller",
44
+ "8": "fantasy",
45
+ "9": "romance"
46
+ }
47
+ ```
48
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
  ### Training hyperparameters
51
 
 
72
  - Transformers 4.36.2
73
  - Pytorch 2.1.0+cu121
74
  - Datasets 2.16.0
75
+ - Tokenizers 0.15.0