Commit
·
6371ffa
1
Parent(s):
be403d5
Fine-tuned-T5-for-MCQGenerator-2
Browse files- .gitignore +1 -0
- config.json +74 -0
- pytorch_model.bin +3 -0
- runs/Aug07_11-07-25_Sherwin/1659841660.4894755/events.out.tfevents.1659841660.Sherwin.30888.1 +3 -0
- runs/Aug07_11-07-25_Sherwin/events.out.tfevents.1659841660.Sherwin.30888.0 +3 -0
- runs/Aug07_11-16-11_Sherwin/1659842178.2506163/events.out.tfevents.1659842178.Sherwin.23748.1 +3 -0
- runs/Aug07_11-16-11_Sherwin/events.out.tfevents.1659842178.Sherwin.23748.0 +3 -0
- runs/Aug07_11-36-49_Sherwin/1659843416.8308208/events.out.tfevents.1659843416.Sherwin.6976.1 +3 -0
- runs/Aug07_11-36-49_Sherwin/events.out.tfevents.1659843416.Sherwin.6976.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "ramsrigouthamg/t5_squad_v1",
|
3 |
+
"architectures": [
|
4 |
+
"T5ForConditionalGeneration"
|
5 |
+
],
|
6 |
+
"d_ff": 3072,
|
7 |
+
"d_kv": 64,
|
8 |
+
"d_model": 768,
|
9 |
+
"decoder_start_token_id": 0,
|
10 |
+
"dense_act_fn": "relu",
|
11 |
+
"dropout_rate": 0.1,
|
12 |
+
"eos_token_id": 1,
|
13 |
+
"feed_forward_proj": "relu",
|
14 |
+
"id2label": {
|
15 |
+
"0": "LABEL_0",
|
16 |
+
"1": "LABEL_1",
|
17 |
+
"2": "LABEL_2",
|
18 |
+
"3": "LABEL_3",
|
19 |
+
"4": "LABEL_4"
|
20 |
+
},
|
21 |
+
"initializer_factor": 1.0,
|
22 |
+
"is_encoder_decoder": true,
|
23 |
+
"is_gated_act": false,
|
24 |
+
"label2id": {
|
25 |
+
"LABEL_0": 0,
|
26 |
+
"LABEL_1": 1,
|
27 |
+
"LABEL_2": 2,
|
28 |
+
"LABEL_3": 3,
|
29 |
+
"LABEL_4": 4
|
30 |
+
},
|
31 |
+
"layer_norm_epsilon": 1e-06,
|
32 |
+
"model_type": "t5",
|
33 |
+
"n_positions": 512,
|
34 |
+
"num_decoder_layers": 12,
|
35 |
+
"num_heads": 12,
|
36 |
+
"num_layers": 12,
|
37 |
+
"output_past": true,
|
38 |
+
"pad_token_id": 0,
|
39 |
+
"relative_attention_max_distance": 128,
|
40 |
+
"relative_attention_num_buckets": 32,
|
41 |
+
"task_specific_params": {
|
42 |
+
"summarization": {
|
43 |
+
"early_stopping": true,
|
44 |
+
"length_penalty": 2.0,
|
45 |
+
"max_length": 200,
|
46 |
+
"min_length": 30,
|
47 |
+
"no_repeat_ngram_size": 3,
|
48 |
+
"num_beams": 4,
|
49 |
+
"prefix": "summarize: "
|
50 |
+
},
|
51 |
+
"translation_en_to_de": {
|
52 |
+
"early_stopping": true,
|
53 |
+
"max_length": 300,
|
54 |
+
"num_beams": 4,
|
55 |
+
"prefix": "translate English to German: "
|
56 |
+
},
|
57 |
+
"translation_en_to_fr": {
|
58 |
+
"early_stopping": true,
|
59 |
+
"max_length": 300,
|
60 |
+
"num_beams": 4,
|
61 |
+
"prefix": "translate English to French: "
|
62 |
+
},
|
63 |
+
"translation_en_to_ro": {
|
64 |
+
"early_stopping": true,
|
65 |
+
"max_length": 300,
|
66 |
+
"num_beams": 4,
|
67 |
+
"prefix": "translate English to Romanian: "
|
68 |
+
}
|
69 |
+
},
|
70 |
+
"torch_dtype": "float32",
|
71 |
+
"transformers_version": "4.21.1",
|
72 |
+
"use_cache": true,
|
73 |
+
"vocab_size": 32101
|
74 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49a079862d05c7a7b16dda8f41d56f6e688e257a680f25e9f903b0e8bb834926
|
3 |
+
size 891614207
|
runs/Aug07_11-07-25_Sherwin/1659841660.4894755/events.out.tfevents.1659841660.Sherwin.30888.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:470c4062743abca16ac646301f09a9d30847a6886b1c96b2fc81809f0e4c9429
|
3 |
+
size 5443
|
runs/Aug07_11-07-25_Sherwin/events.out.tfevents.1659841660.Sherwin.30888.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8806df4d0dcf528dfa9f1a375cdf18056619c22f29c57f2dcf7a6972fc6fde9c
|
3 |
+
size 4739
|
runs/Aug07_11-16-11_Sherwin/1659842178.2506163/events.out.tfevents.1659842178.Sherwin.23748.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7c5b8290be78c8a5e014d4f03842fc69b23b1ae714680ae47972d6afd58087d
|
3 |
+
size 5443
|
runs/Aug07_11-16-11_Sherwin/events.out.tfevents.1659842178.Sherwin.23748.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0800b40e78e759fe0e31daa0ceea5a37e279965ce51a41ecfb3ee515032d3c2
|
3 |
+
size 4739
|
runs/Aug07_11-36-49_Sherwin/1659843416.8308208/events.out.tfevents.1659843416.Sherwin.6976.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0df3b2d5a1ca7cd9ea46aec1b03e243359f2ded749db59489c49a83cc15cacb0
|
3 |
+
size 5452
|
runs/Aug07_11-36-49_Sherwin/events.out.tfevents.1659843416.Sherwin.6976.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:316d2c097381a388d5871856cf246b169cca35319e620c1997a9f8646480068f
|
3 |
+
size 4752
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d4d7b4a851c1604aa17902a855d86593de893f8198ca3a03e139a8c33f8d9c0c
|
3 |
+
size 3375
|