mundo-go commited on
Commit
f0b80b5
1 Parent(s): 753ed86

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bongsoo/mdistilbertV3.1",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-movie",
14
+ "2": "I-movie",
15
+ "3": "B-genre",
16
+ "4": "I-genre",
17
+ "5": "B-contry",
18
+ "6": "I-contry",
19
+ "7": "B-person",
20
+ "8": "I-person",
21
+ "9": "B-date",
22
+ "10": "I-date",
23
+ "11": "B-ott",
24
+ "12": "I-ott",
25
+ "13": "B-state",
26
+ "14": "I-state",
27
+ "15": "B-tag",
28
+ "16": "I-tag"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "B-contry": 5,
33
+ "B-date": 9,
34
+ "B-genre": 3,
35
+ "B-movie": 1,
36
+ "B-ott": 11,
37
+ "B-person": 7,
38
+ "B-state": 13,
39
+ "B-tag": 15,
40
+ "I-contry": 6,
41
+ "I-date": 10,
42
+ "I-genre": 4,
43
+ "I-movie": 2,
44
+ "I-ott": 12,
45
+ "I-person": 8,
46
+ "I-state": 14,
47
+ "I-tag": 16,
48
+ "O": 0
49
+ },
50
+ "max_position_embeddings": 512,
51
+ "model_type": "distilbert",
52
+ "n_heads": 12,
53
+ "n_layers": 6,
54
+ "output_past": true,
55
+ "pad_token_id": 0,
56
+ "qa_dropout": 0.1,
57
+ "seq_classif_dropout": 0.2,
58
+ "sinusoidal_pos_embds": false,
59
+ "tie_weights_": true,
60
+ "torch_dtype": "float32",
61
+ "transformers_version": "4.35.2",
62
+ "vocab_size": 159552
63
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91b48438dac3dac3bb9db98375d917d075309ed85d55774fccc8589b9e9a4013
3
+ size 661896324
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,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
48
+ "mask_token": "[MASK]",
49
+ "max_len": 128,
50
+ "max_length": 128,
51
+ "model_max_length": 128,
52
+ "never_split": null,
53
+ "pad_token": "[PAD]",
54
+ "sep_token": "[SEP]",
55
+ "stride": 0,
56
+ "strip_accents": false,
57
+ "tokenize_chinese_chars": true,
58
+ "tokenizer_class": "DistilBertTokenizer",
59
+ "truncation_side": "right",
60
+ "truncation_strategy": "longest_first",
61
+ "unk_token": "[UNK]"
62
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d73e71d60b6f0fc3767c7b87ed2a84f920f25e6eee80f0c0291fb95a70554345
3
+ size 4536
vocab.txt ADDED
The diff for this file is too large to render. See raw diff