stulcrad commited on
Commit
b5b77fb
·
verified ·
1 Parent(s): 3c9e708

Training in progress, step 500

Browse files
config.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "UWB-AIR/Czert-B-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.25,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.25,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "B-A",
15
+ "2": "I-A",
16
+ "3": "B-C",
17
+ "4": "I-C",
18
+ "5": "B-G",
19
+ "6": "I-G",
20
+ "7": "B-I",
21
+ "8": "I-I",
22
+ "9": "B-M",
23
+ "10": "I-M",
24
+ "11": "B-N",
25
+ "12": "I-N",
26
+ "13": "B-O",
27
+ "14": "I-O",
28
+ "15": "B-P",
29
+ "16": "I-P",
30
+ "17": "B-Q",
31
+ "18": "I-Q",
32
+ "19": "B-T",
33
+ "20": "I-T"
34
+ },
35
+ "initializer_range": 0.02,
36
+ "intermediate_size": 3072,
37
+ "label2id": {
38
+ "B-A": 1,
39
+ "B-C": 3,
40
+ "B-G": 5,
41
+ "B-I": 7,
42
+ "B-M": 9,
43
+ "B-N": 11,
44
+ "B-O": 13,
45
+ "B-P": 15,
46
+ "B-Q": 17,
47
+ "B-T": 19,
48
+ "I-A": 2,
49
+ "I-C": 4,
50
+ "I-G": 6,
51
+ "I-I": 8,
52
+ "I-M": 10,
53
+ "I-N": 12,
54
+ "I-O": 14,
55
+ "I-P": 16,
56
+ "I-Q": 18,
57
+ "I-T": 20,
58
+ "O": 0
59
+ },
60
+ "layer_norm_eps": 1e-12,
61
+ "max_position_embeddings": 512,
62
+ "model_type": "bert",
63
+ "num_attention_heads": 12,
64
+ "num_hidden_layers": 12,
65
+ "pad_token_id": 0,
66
+ "position_embedding_type": "absolute",
67
+ "torch_dtype": "float32",
68
+ "transformers_version": "4.36.2",
69
+ "type_vocab_size": 2,
70
+ "use_cache": true,
71
+ "vocab_size": 30522
72
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1b72bd76a21ea0907ee34054c86315bd7ad86593142169688773501c8c6d033
3
+ size 435654532
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,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "4": {
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": false,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": false,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26bdaf35138b71d6b716be5359733e452e31978337ac7c9ad69cf966e8ab8d79
3
+ size 4728
vocab.txt ADDED
The diff for this file is too large to render. See raw diff