nehatarey commited on
Commit
e9cf326
·
1 Parent(s): f9fe644

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -12
README.md CHANGED
@@ -12,24 +12,21 @@ probably proofread and complete it, then remove this comment. -->
12
 
13
  # distilbert_classifier_newsgroup
14
 
15
- This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
16
- It achieves the following results on the evaluation set:
17
 
18
 
19
- ## Model description
20
-
21
- More information needed
22
-
23
- ## Intended uses & limitations
24
-
25
- More information needed
26
 
27
  ## Training and evaluation data
28
 
29
- More information needed
 
30
 
31
  ## Training procedure
32
-
 
 
 
33
  ### Training hyperparameters
34
 
35
  The following hyperparameters were used during training:
@@ -38,7 +35,7 @@ The following hyperparameters were used during training:
38
 
39
  ### Training results
40
 
41
-
42
 
43
  ### Framework versions
44
 
 
12
 
13
  # distilbert_classifier_newsgroup
14
 
15
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the [20 Newsgroups](http://qwone.com/~jason/20Newsgroups/) data set is a collection of approximately 20,000 newsgroup documents, partitioned (nearly) evenly across 20 different newsgroups.
16
+ It achieves the following results on the evaluation set: loss: 0.5660 - accuracy: 0.8371
17
 
18
 
 
 
 
 
 
 
 
19
 
20
  ## Training and evaluation data
21
 
22
+ - The training set contained 10182 rows with features - text and label.
23
+ - The evaluation set contained 7532 rows with features - text and label.
24
 
25
  ## Training procedure
26
+ - Setup the model checkpoint as [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased)
27
+ - Intialize the starting weights with the model checkpoint and give it the number of labels - i.e., 20 in this case.
28
+ - Will be training for 3 epochs
29
+ - Using a batch size of 16
30
  ### Training hyperparameters
31
 
32
  The following hyperparameters were used during training:
 
35
 
36
  ### Training results
37
 
38
+ - Results on the evaluation set: loss: 0.5660 - accuracy: 0.8371
39
 
40
  ### Framework versions
41