DrishtiSharma commited on
Commit
f2a488d
·
1 Parent(s): 8b71017

End of training

Browse files
Files changed (5) hide show
  1. README.md +76 -0
  2. config.json +38 -0
  3. generation_config.json +6 -0
  4. pytorch_model.bin +3 -0
  5. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: microsoft/DialoGPT-large
4
+ tags:
5
+ - generated_from_trainer
6
+ model-index:
7
+ - name: DialoGPT-large-faqs-block-size-400-bs-16-lr-1e-05
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
12
+ should probably proofread and complete it, then remove this comment. -->
13
+
14
+ # DialoGPT-large-faqs-block-size-400-bs-16-lr-1e-05
15
+
16
+ This model is a fine-tuned version of [microsoft/DialoGPT-large](https://huggingface.co/microsoft/DialoGPT-large) on the None dataset.
17
+ It achieves the following results on the evaluation set:
18
+ - Loss: 2.6788
19
+
20
+ ## Model description
21
+
22
+ More information needed
23
+
24
+ ## Intended uses & limitations
25
+
26
+ More information needed
27
+
28
+ ## Training and evaluation data
29
+
30
+ More information needed
31
+
32
+ ## Training procedure
33
+
34
+ ### Training hyperparameters
35
+
36
+ The following hyperparameters were used during training:
37
+ - learning_rate: 1e-05
38
+ - train_batch_size: 8
39
+ - eval_batch_size: 8
40
+ - seed: 42
41
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
42
+ - lr_scheduler_type: linear
43
+ - num_epochs: 20
44
+
45
+ ### Training results
46
+
47
+ | Training Loss | Epoch | Step | Validation Loss |
48
+ |:-------------:|:-----:|:----:|:---------------:|
49
+ | No log | 1.0 | 13 | 5.8404 |
50
+ | No log | 2.0 | 26 | 5.0890 |
51
+ | No log | 3.0 | 39 | 4.6086 |
52
+ | No log | 4.0 | 52 | 4.1995 |
53
+ | No log | 5.0 | 65 | 3.8393 |
54
+ | No log | 6.0 | 78 | 3.5620 |
55
+ | No log | 7.0 | 91 | 3.3420 |
56
+ | No log | 8.0 | 104 | 3.1838 |
57
+ | No log | 9.0 | 117 | 3.0612 |
58
+ | No log | 10.0 | 130 | 2.9650 |
59
+ | No log | 11.0 | 143 | 2.8926 |
60
+ | No log | 12.0 | 156 | 2.8375 |
61
+ | No log | 13.0 | 169 | 2.8019 |
62
+ | No log | 14.0 | 182 | 2.7654 |
63
+ | No log | 15.0 | 195 | 2.7348 |
64
+ | No log | 16.0 | 208 | 2.7130 |
65
+ | No log | 17.0 | 221 | 2.6977 |
66
+ | No log | 18.0 | 234 | 2.6874 |
67
+ | No log | 19.0 | 247 | 2.6813 |
68
+ | No log | 20.0 | 260 | 2.6788 |
69
+
70
+
71
+ ### Framework versions
72
+
73
+ - Transformers 4.33.0.dev0
74
+ - Pytorch 2.0.1+cu118
75
+ - Datasets 2.14.4.dev0
76
+ - Tokenizers 0.13.3
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/DialoGPT-large",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 1280,
16
+ "n_head": 20,
17
+ "n_inner": null,
18
+ "n_layer": 36,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "conversational": {
31
+ "max_length": 1000
32
+ }
33
+ },
34
+ "torch_dtype": "float32",
35
+ "transformers_version": "4.33.0.dev0",
36
+ "use_cache": true,
37
+ "vocab_size": 50257
38
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 50256,
4
+ "eos_token_id": 50256,
5
+ "transformers_version": "4.33.0.dev0"
6
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4a2cfc8ff7162eabd719c7e0d4edf6a0d58d836c59fe1c9579b27484830f437
3
+ size 3096262685
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049bee1dad0bc3db9cc765dc706ffd632bbc21264661626c0f01748758742c47
3
+ size 4091