gayanin commited on
Commit
3aee1c7
·
1 Parent(s): f9ecb5f

End of training

Browse files
Files changed (2) hide show
  1. README.md +37 -23
  2. generation_config.json +1 -1
README.md CHANGED
@@ -15,7 +15,7 @@ should probably proofread and complete it, then remove this comment. -->
15
 
16
  This model is a fine-tuned version of [facebook/bart-base](https://huggingface.co/facebook/bart-base) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
- - Loss: 0.1828
19
 
20
  ## Model description
21
 
@@ -35,8 +35,8 @@ More information needed
35
 
36
  The following hyperparameters were used during training:
37
  - learning_rate: 5e-05
38
- - train_batch_size: 32
39
- - eval_batch_size: 32
40
  - seed: 42
41
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
42
  - lr_scheduler_type: linear
@@ -45,27 +45,41 @@ The following hyperparameters were used during training:
45
 
46
  ### Training results
47
 
48
- | Training Loss | Epoch | Step | Validation Loss |
49
- |:-------------:|:-----:|:----:|:---------------:|
50
- | 0.4621 | 0.21 | 500 | 0.3522 |
51
- | 0.3527 | 0.43 | 1000 | 0.2873 |
52
- | 0.298 | 0.64 | 1500 | 0.2523 |
53
- | 0.2818 | 0.86 | 2000 | 0.2292 |
54
- | 0.2317 | 1.07 | 2500 | 0.2204 |
55
- | 0.2232 | 1.28 | 3000 | 0.2125 |
56
- | 0.2191 | 1.5 | 3500 | 0.2045 |
57
- | 0.1944 | 1.71 | 4000 | 0.1971 |
58
- | 0.1707 | 1.93 | 4500 | 0.1931 |
59
- | 0.1446 | 2.14 | 5000 | 0.1914 |
60
- | 0.139 | 2.35 | 5500 | 0.1882 |
61
- | 0.1345 | 2.57 | 6000 | 0.1844 |
62
- | 0.1416 | 2.78 | 6500 | 0.1843 |
63
- | 0.1635 | 3.0 | 7000 | 0.1828 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
 
66
  ### Framework versions
67
 
68
- - Transformers 4.33.3
69
- - Pytorch 2.0.1
70
- - Datasets 2.14.5
71
- - Tokenizers 0.13.3
 
15
 
16
  This model is a fine-tuned version of [facebook/bart-base](https://huggingface.co/facebook/bart-base) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
+ - Loss: 0.1795
19
 
20
  ## Model description
21
 
 
35
 
36
  The following hyperparameters were used during training:
37
  - learning_rate: 5e-05
38
+ - train_batch_size: 16
39
+ - eval_batch_size: 16
40
  - seed: 42
41
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
42
  - lr_scheduler_type: linear
 
45
 
46
  ### Training results
47
 
48
+ | Training Loss | Epoch | Step | Validation Loss |
49
+ |:-------------:|:-----:|:-----:|:---------------:|
50
+ | 0.5322 | 0.11 | 500 | 0.4266 |
51
+ | 0.3544 | 0.21 | 1000 | 0.3467 |
52
+ | 0.3892 | 0.32 | 1500 | 0.3076 |
53
+ | 0.3657 | 0.43 | 2000 | 0.2814 |
54
+ | 0.2904 | 0.54 | 2500 | 0.2656 |
55
+ | 0.2551 | 0.64 | 3000 | 0.2447 |
56
+ | 0.2641 | 0.75 | 3500 | 0.2373 |
57
+ | 0.284 | 0.86 | 4000 | 0.2218 |
58
+ | 0.2631 | 0.96 | 4500 | 0.2186 |
59
+ | 0.2031 | 1.07 | 5000 | 0.2196 |
60
+ | 0.1983 | 1.18 | 5500 | 0.2147 |
61
+ | 0.1842 | 1.28 | 6000 | 0.2127 |
62
+ | 0.1697 | 1.39 | 6500 | 0.2020 |
63
+ | 0.2006 | 1.5 | 7000 | 0.2014 |
64
+ | 0.1788 | 1.61 | 7500 | 0.1987 |
65
+ | 0.1589 | 1.71 | 8000 | 0.1938 |
66
+ | 0.2047 | 1.82 | 8500 | 0.1909 |
67
+ | 0.1583 | 1.93 | 9000 | 0.1896 |
68
+ | 0.1437 | 2.03 | 9500 | 0.1900 |
69
+ | 0.1466 | 2.14 | 10000 | 0.1890 |
70
+ | 0.1618 | 2.25 | 10500 | 0.1883 |
71
+ | 0.1187 | 2.35 | 11000 | 0.1856 |
72
+ | 0.1142 | 2.46 | 11500 | 0.1837 |
73
+ | 0.1382 | 2.57 | 12000 | 0.1811 |
74
+ | 0.1403 | 2.68 | 12500 | 0.1804 |
75
+ | 0.1045 | 2.78 | 13000 | 0.1810 |
76
+ | 0.1056 | 2.89 | 13500 | 0.1801 |
77
+ | 0.12 | 3.0 | 14000 | 0.1795 |
78
 
79
 
80
  ### Framework versions
81
 
82
+ - Transformers 4.34.1
83
+ - Pytorch 2.1.0
84
+ - Datasets 2.14.6
85
+ - Tokenizers 0.14.1
generation_config.json CHANGED
@@ -9,5 +9,5 @@
9
  "no_repeat_ngram_size": 3,
10
  "num_beams": 4,
11
  "pad_token_id": 1,
12
- "transformers_version": "4.33.3"
13
  }
 
9
  "no_repeat_ngram_size": 3,
10
  "num_beams": 4,
11
  "pad_token_id": 1,
12
+ "transformers_version": "4.34.1"
13
  }