MichaelSargious commited on
Commit
5ece343
·
verified ·
1 Parent(s): f3b5aa9

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,16 +1,14 @@
1
  {
2
- "_name_or_path": "FacebookAI/xlm-roberta-large-finetuned-conll03-german",
3
- "_num_labels": 9,
4
  "architectures": [
5
- "XLMRobertaForTokenClassification"
6
  ],
7
  "attention_probs_dropout_prob": 0.1,
8
- "bos_token_id": 0,
9
  "classifier_dropout": null,
10
- "eos_token_id": 2,
11
  "hidden_act": "gelu",
12
  "hidden_dropout_prob": 0.1,
13
- "hidden_size": 1024,
14
  "id2label": {
15
  "0": "VOID",
16
  "1": "craft_costs.gross_amount",
@@ -23,7 +21,7 @@
23
  "8": "vendor_name"
24
  },
25
  "initializer_range": 0.02,
26
- "intermediate_size": 4096,
27
  "label2id": {
28
  "VOID": 0,
29
  "craft_costs.gross_amount": 1,
@@ -35,17 +33,21 @@
35
  "vendor_address.zip": 5,
36
  "vendor_name": 8
37
  },
38
- "layer_norm_eps": 1e-05,
39
- "max_position_embeddings": 514,
40
- "model_type": "xlm-roberta",
41
- "num_attention_heads": 16,
42
- "num_hidden_layers": 24,
43
- "output_past": true,
44
- "pad_token_id": 1,
 
 
 
 
45
  "position_embedding_type": "absolute",
46
  "torch_dtype": "float32",
47
  "transformers_version": "4.46.1",
48
- "type_vocab_size": 1,
49
  "use_cache": true,
50
- "vocab_size": 250002
51
  }
 
1
  {
2
+ "_name_or_path": "mschiesser/ner-bert-german",
 
3
  "architectures": [
4
+ "BertForTokenClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
 
7
  "classifier_dropout": null,
8
+ "directionality": "bidi",
9
  "hidden_act": "gelu",
10
  "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
  "id2label": {
13
  "0": "VOID",
14
  "1": "craft_costs.gross_amount",
 
21
  "8": "vendor_name"
22
  },
23
  "initializer_range": 0.02,
24
+ "intermediate_size": 3072,
25
  "label2id": {
26
  "VOID": 0,
27
  "craft_costs.gross_amount": 1,
 
33
  "vendor_address.zip": 5,
34
  "vendor_name": 8
35
  },
36
+ "layer_norm_eps": 1e-12,
37
+ "max_position_embeddings": 512,
38
+ "model_type": "bert",
39
+ "num_attention_heads": 12,
40
+ "num_hidden_layers": 12,
41
+ "pad_token_id": 0,
42
+ "pooler_fc_size": 768,
43
+ "pooler_num_attention_heads": 12,
44
+ "pooler_num_fc_layers": 3,
45
+ "pooler_size_per_head": 128,
46
+ "pooler_type": "first_token_transform",
47
  "position_embedding_type": "absolute",
48
  "torch_dtype": "float32",
49
  "transformers_version": "4.46.1",
50
+ "type_vocab_size": 2,
51
  "use_cache": true,
52
+ "vocab_size": 119547
53
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:263ee0cf44047bc7a391a5508f5270ccd19c4d061c02b368494f221df966c5f1
3
- size 2235448756
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b3d0c328163fb6fea78462b0de2f2ed3ab48380830dd0b1eb4a1d4c43be79d9
3
+ size 709102436
special_tokens_map.json CHANGED
@@ -1,15 +1,37 @@
1
  {
2
- "bos_token": "<s>",
3
- "cls_token": "<s>",
4
- "eos_token": "</s>",
 
 
 
 
5
  "mask_token": {
6
- "content": "<mask>",
7
- "lstrip": true,
 
 
 
 
 
 
 
8
  "normalized": false,
9
  "rstrip": false,
10
  "single_word": false
11
  },
12
- "pad_token": "<pad>",
13
- "sep_token": "</s>",
14
- "unk_token": "<unk>"
 
 
 
 
 
 
 
 
 
 
 
15
  }
 
1
  {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
  "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
  "normalized": false,
20
  "rstrip": false,
21
  "single_word": false
22
  },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
  }
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8373f9cd3d27591e1924426bcc1c8799bc5a9affc4fc857982c5d66668dd1f41
3
- size 17082832
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d76a4d25ebe8f217654f1039bd991bfc96e7c2cd36e6d28aff941783ed1e9c8
3
+ size 2919460
tokenizer_config.json CHANGED
@@ -1,54 +1,55 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "<s>",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
- "1": {
12
- "content": "<pad>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "2": {
20
- "content": "</s>",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "3": {
28
- "content": "<unk>",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "250001": {
36
- "content": "<mask>",
37
- "lstrip": true,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
- "bos_token": "<s>",
45
  "clean_up_tokenization_spaces": false,
46
- "cls_token": "<s>",
47
- "eos_token": "</s>",
48
- "mask_token": "<mask>",
49
  "model_max_length": 512,
50
- "pad_token": "<pad>",
51
- "sep_token": "</s>",
52
- "tokenizer_class": "XLMRobertaTokenizer",
53
- "unk_token": "<unk>"
 
 
54
  }
 
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": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "mask_token": "[MASK]",
48
  "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:319991ad90f9c0f39652870de2a4bd7e62de8d1cb04ee6aac136be5a04f9e5d7
3
  size 5176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9665f1fdeeed6817786e11104e4c4877c7ec4ce1558a33094f472ed7367544ff
3
  size 5176
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff