jvalline commited on
Commit
e8259ab
·
verified ·
1 Parent(s): 6febec8

Model save

Browse files
Files changed (5) hide show
  1. README.md +9 -9
  2. config.json +6 -6
  3. pytorch_model.bin +2 -2
  4. tokenizer.json +6 -1
  5. training_args.bin +1 -1
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  license: apache-2.0
3
- base_model: t5-small
4
  tags:
5
  - generated_from_trainer
6
  metrics:
@@ -15,9 +15,9 @@ should probably proofread and complete it, then remove this comment. -->
15
 
16
  # randomization_model
17
 
18
- This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the None dataset.
19
  It achieves the following results on the evaluation set:
20
- - Loss: 0.2898
21
  - Bleu: 0.0001
22
  - Gen Len: 18.9989
23
 
@@ -39,8 +39,8 @@ More information needed
39
 
40
  The following hyperparameters were used during training:
41
  - learning_rate: 2e-05
42
- - train_batch_size: 16
43
- - eval_batch_size: 16
44
  - seed: 42
45
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
46
  - lr_scheduler_type: linear
@@ -48,10 +48,10 @@ The following hyperparameters were used during training:
48
 
49
  ### Training results
50
 
51
- | Training Loss | Epoch | Step | Validation Loss | Bleu | Gen Len |
52
- |:-------------:|:-----:|:----:|:---------------:|:------:|:-------:|
53
- | 0.3909 | 1.0 | 3125 | 0.3117 | 0.0001 | 18.9989 |
54
- | 0.356 | 2.0 | 6250 | 0.2898 | 0.0001 | 18.9989 |
55
 
56
 
57
  ### Framework versions
 
1
  ---
2
  license: apache-2.0
3
+ base_model: t5-base
4
  tags:
5
  - generated_from_trainer
6
  metrics:
 
15
 
16
  # randomization_model
17
 
18
+ This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the None dataset.
19
  It achieves the following results on the evaluation set:
20
+ - Loss: 0.1101
21
  - Bleu: 0.0001
22
  - Gen Len: 18.9989
23
 
 
39
 
40
  The following hyperparameters were used during training:
41
  - learning_rate: 2e-05
42
+ - train_batch_size: 8
43
+ - eval_batch_size: 8
44
  - seed: 42
45
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
46
  - lr_scheduler_type: linear
 
48
 
49
  ### Training results
50
 
51
+ | Training Loss | Epoch | Step | Validation Loss | Bleu | Gen Len |
52
+ |:-------------:|:-----:|:-----:|:---------------:|:------:|:-------:|
53
+ | 0.1653 | 1.0 | 6250 | 0.1224 | 0.0001 | 18.9989 |
54
+ | 0.1446 | 2.0 | 12500 | 0.1101 | 0.0001 | 18.9989 |
55
 
56
 
57
  ### Framework versions
config.json CHANGED
@@ -1,12 +1,12 @@
1
  {
2
- "_name_or_path": "t5-small",
3
  "architectures": [
4
  "T5ForConditionalGeneration"
5
  ],
6
  "classifier_dropout": 0.0,
7
- "d_ff": 2048,
8
  "d_kv": 64,
9
- "d_model": 512,
10
  "decoder_start_token_id": 0,
11
  "dense_act_fn": "relu",
12
  "dropout_rate": 0.1,
@@ -18,9 +18,9 @@
18
  "layer_norm_epsilon": 1e-06,
19
  "model_type": "t5",
20
  "n_positions": 512,
21
- "num_decoder_layers": 6,
22
- "num_heads": 8,
23
- "num_layers": 6,
24
  "output_past": true,
25
  "pad_token_id": 0,
26
  "relative_attention_max_distance": 128,
 
1
  {
2
+ "_name_or_path": "t5-base",
3
  "architectures": [
4
  "T5ForConditionalGeneration"
5
  ],
6
  "classifier_dropout": 0.0,
7
+ "d_ff": 3072,
8
  "d_kv": 64,
9
+ "d_model": 768,
10
  "decoder_start_token_id": 0,
11
  "dense_act_fn": "relu",
12
  "dropout_rate": 0.1,
 
18
  "layer_norm_epsilon": 1e-06,
19
  "model_type": "t5",
20
  "n_positions": 512,
21
+ "num_decoder_layers": 12,
22
+ "num_heads": 12,
23
+ "num_layers": 12,
24
  "output_past": true,
25
  "pad_token_id": 0,
26
  "relative_attention_max_distance": 128,
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e7c269b7dc9d8c80da9b860f0c0cb275877d831e723f9021d782e0ba55416a15
3
- size 242072086
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4199fbac2864bed1fdf474c8b322c86a053e4ce95b58001c041af683b56747b
3
+ size 891703374
tokenizer.json CHANGED
@@ -1,6 +1,11 @@
1
  {
2
  "version": "1.0",
3
- "truncation": null,
 
 
 
 
 
4
  "padding": null,
5
  "added_tokens": [
6
  {
 
1
  {
2
  "version": "1.0",
3
+ "truncation": {
4
+ "direction": "Right",
5
+ "max_length": 512,
6
+ "strategy": "LongestFirst",
7
+ "stride": 0
8
+ },
9
  "padding": null,
10
  "added_tokens": [
11
  {
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8c976e681199f8bf90735e20ae01eec6648d47e934b7cf6a8ca8ebe2d37ccb57
3
  size 4792
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af74cbe8fb034f62b00af7f27db72c57e44e4fd3da019ef33d0530d40fe21892
3
  size 4792