picard47at commited on
Commit
1f22283
·
verified ·
1 Parent(s): c37459f

Training in progress, step 200

Browse files
config.json ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "bert-base-chinese",
7
+ "add_cross_attention": true,
8
+ "architectures": [
9
+ "BertForMaskedLM"
10
+ ],
11
+ "attention_probs_dropout_prob": 0.1,
12
+ "classifier_dropout": null,
13
+ "directionality": "bidi",
14
+ "hidden_act": "gelu",
15
+ "hidden_dropout_prob": 0.1,
16
+ "hidden_size": 768,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 3072,
19
+ "is_decoder": true,
20
+ "layer_norm_eps": 1e-12,
21
+ "max_position_embeddings": 512,
22
+ "model_type": "bert",
23
+ "num_attention_heads": 12,
24
+ "num_hidden_layers": 12,
25
+ "pooler_fc_size": 768,
26
+ "pooler_num_attention_heads": 12,
27
+ "pooler_num_fc_layers": 3,
28
+ "pooler_size_per_head": 128,
29
+ "pooler_type": "first_token_transform",
30
+ "position_embedding_type": "absolute",
31
+ "torch_dtype": "float32",
32
+ "type_vocab_size": 2,
33
+ "use_cache": true,
34
+ "vocab_size": 21128
35
+ },
36
+ "decoder_start_token_id": 101,
37
+ "encoder": {
38
+ "_name_or_path": "schen/longformer-chinese-base-4096",
39
+ "architectures": [
40
+ "BertForPreTraining"
41
+ ],
42
+ "attention_probs_dropout_prob": 0.1,
43
+ "attention_window": [
44
+ 512,
45
+ 512,
46
+ 512,
47
+ 512,
48
+ 512,
49
+ 512,
50
+ 512,
51
+ 512,
52
+ 512,
53
+ 512,
54
+ 512,
55
+ 512
56
+ ],
57
+ "classifier_dropout": null,
58
+ "directionality": "bidi",
59
+ "gradient_checkpointing": false,
60
+ "hidden_act": "gelu",
61
+ "hidden_dropout_prob": 0.1,
62
+ "hidden_size": 768,
63
+ "initializer_range": 0.02,
64
+ "intermediate_size": 3072,
65
+ "layer_norm_eps": 1e-12,
66
+ "max_position_embeddings": 4096,
67
+ "model_type": "bert",
68
+ "num_attention_heads": 12,
69
+ "num_hidden_layers": 12,
70
+ "pooler_fc_size": 768,
71
+ "pooler_num_attention_heads": 12,
72
+ "pooler_num_fc_layers": 3,
73
+ "pooler_size_per_head": 128,
74
+ "pooler_type": "first_token_transform",
75
+ "position_embedding_type": "absolute",
76
+ "torch_dtype": "float32",
77
+ "type_vocab_size": 2,
78
+ "use_cache": true,
79
+ "vocab_size": 21128
80
+ },
81
+ "eos_token_id": 102,
82
+ "is_encoder_decoder": true,
83
+ "max_length": null,
84
+ "model_type": "encoder-decoder",
85
+ "pad_token_id": 0,
86
+ "torch_dtype": "float16",
87
+ "transformers_version": "4.52.4"
88
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2481c40bbc02a512e2c15fa422c56ef853c2d8c41d204ac7a6ecf9656ec8a35f
3
+ size 503914776
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "extra_special_tokens": {},
49
+ "full_tokenizer_file": null,
50
+ "mask_token": "[MASK]",
51
+ "model_max_length": 512,
52
+ "never_split": null,
53
+ "pad_token": "[PAD]",
54
+ "sep_token": "[SEP]",
55
+ "strip_accents": null,
56
+ "tokenize_chinese_chars": true,
57
+ "tokenizer_class": "BertTokenizer",
58
+ "unk_token": "[UNK]"
59
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b58123e8fa5ee8d452dbca2611f7904c01ce4a74d518db58f85b2f0c578c8e46
3
+ size 7313
vocab.txt ADDED
The diff for this file is too large to render. See raw diff