deniandriancode commited on
Commit
63bb948
1 Parent(s): 96ff265

End of training

Browse files
Files changed (5) hide show
  1. README.md +63 -0
  2. config.json +64 -0
  3. generation_config.json +15 -0
  4. pytorch_model.bin +3 -0
  5. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: facebook/blenderbot-400M-distill
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - daily_dialog
8
+ model-index:
9
+ - name: blenderbot-400M-distill-dialy-dialog
10
+ results: []
11
+ ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # blenderbot-400M-distill-dialy-dialog
17
+
18
+ This model is a fine-tuned version of [facebook/blenderbot-400M-distill](https://huggingface.co/facebook/blenderbot-400M-distill) on the daily_dialog dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 0.5989
21
+
22
+ ## Model description
23
+
24
+ More information needed
25
+
26
+ ## Intended uses & limitations
27
+
28
+ More information needed
29
+
30
+ ## Training and evaluation data
31
+
32
+ More information needed
33
+
34
+ ## Training procedure
35
+
36
+ ### Training hyperparameters
37
+
38
+ The following hyperparameters were used during training:
39
+ - learning_rate: 2e-05
40
+ - train_batch_size: 8
41
+ - eval_batch_size: 8
42
+ - seed: 42
43
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
44
+ - lr_scheduler_type: linear
45
+ - num_epochs: 5.0
46
+
47
+ ### Training results
48
+
49
+ | Training Loss | Epoch | Step | Validation Loss |
50
+ |:-------------:|:-----:|:----:|:---------------:|
51
+ | No log | 1.0 | 10 | 1.0994 |
52
+ | No log | 2.0 | 20 | 0.7949 |
53
+ | No log | 3.0 | 30 | 0.6735 |
54
+ | No log | 4.0 | 40 | 0.6152 |
55
+ | No log | 5.0 | 50 | 0.5989 |
56
+
57
+
58
+ ### Framework versions
59
+
60
+ - Transformers 4.34.0
61
+ - Pytorch 2.0.1+cu118
62
+ - Datasets 2.14.5
63
+ - Tokenizers 0.14.1
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/blenderbot-400M-distill",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "gelu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": true,
7
+ "architectures": [
8
+ "BlenderbotForConditionalGeneration"
9
+ ],
10
+ "attention_dropout": 0.0,
11
+ "bos_token_id": 1,
12
+ "classif_dropout": 0.0,
13
+ "classifier_dropout": 0.0,
14
+ "d_model": 1280,
15
+ "decoder_attention_heads": 32,
16
+ "decoder_ffn_dim": 5120,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 12,
19
+ "decoder_start_token_id": 1,
20
+ "do_blenderbot_90_layernorm": true,
21
+ "dropout": 0.1,
22
+ "encoder_attention_heads": 32,
23
+ "encoder_ffn_dim": 5120,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 2,
26
+ "encoder_no_repeat_ngram_size": 3,
27
+ "eos_token_id": 2,
28
+ "extra_layer_norm": false,
29
+ "extra_pos_embeddings": 0,
30
+ "force_bos_token_to_be_generated": false,
31
+ "forced_eos_token_id": 2,
32
+ "gradient_checkpointing": false,
33
+ "id2label": {
34
+ "0": "LABEL_0",
35
+ "1": "LABEL_1",
36
+ "2": "LABEL_2"
37
+ },
38
+ "init_std": 0.02,
39
+ "is_encoder_decoder": true,
40
+ "label2id": {
41
+ "LABEL_0": 0,
42
+ "LABEL_1": 1,
43
+ "LABEL_2": 2
44
+ },
45
+ "layernorm_variant": "prelayernorm",
46
+ "length_penalty": 0.65,
47
+ "max_length": 60,
48
+ "max_position_embeddings": 128,
49
+ "min_length": 20,
50
+ "model_type": "blenderbot",
51
+ "no_repeat_ngram_size": 3,
52
+ "normalize_before": true,
53
+ "normalize_embedding": false,
54
+ "num_beams": 10,
55
+ "num_hidden_layers": 2,
56
+ "pad_token_id": 0,
57
+ "scale_embedding": true,
58
+ "static_position_embeddings": false,
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.34.0",
61
+ "unk_token_id": 3,
62
+ "use_cache": true,
63
+ "vocab_size": 8008
64
+ }
generation_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "decoder_start_token_id": 1,
5
+ "encoder_no_repeat_ngram_size": 3,
6
+ "eos_token_id": 2,
7
+ "forced_eos_token_id": 2,
8
+ "length_penalty": 0.65,
9
+ "max_length": 60,
10
+ "min_length": 20,
11
+ "no_repeat_ngram_size": 3,
12
+ "num_beams": 10,
13
+ "pad_token_id": 0,
14
+ "transformers_version": "4.34.0"
15
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88402407df391d7068048d1a501db3e02f4305a43527ffae8097f1d0b8eb9269
3
+ size 1459362445
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71306c4b02432434368304ff5cb38b08c51b7b2c46aab84ae4d9d9029c042bd6
3
+ size 4091