ABrinkmann commited on
Commit
93aece7
·
1 Parent(s): f3bece5

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "B-Laptops_Screen_Size",
15
+ "2": "I-Laptops_Screen_Size",
16
+ "3": "B-Flash_Memory_Cards_SD_Format",
17
+ "4": "I-Flash_Memory_Cards_SD_Format",
18
+ "5": "B-Digital_Cameras_Optical_Zoom",
19
+ "6": "I-Digital_Cameras_Optical_Zoom",
20
+ "7": "B-Laptops_Number_of_Cores",
21
+ "8": "I-Laptops_Number_of_Cores",
22
+ "9": "B-Digital_Cameras_Sensor_Type",
23
+ "10": "I-Digital_Cameras_Sensor_Type",
24
+ "11": "B-Digital_Cameras_Sensor_Size",
25
+ "12": "I-Digital_Cameras_Sensor_Size",
26
+ "13": "B-Flash_Memory_Cards_Capacity",
27
+ "14": "I-Flash_Memory_Cards_Capacity",
28
+ "15": "B-Digital_Cameras_Resolution",
29
+ "16": "I-Digital_Cameras_Resolution",
30
+ "17": "B-Laptops_Processor_Speed",
31
+ "18": "I-Laptops_Processor_Speed",
32
+ "19": "B-Laptops_Processor_Brand",
33
+ "20": "I-Laptops_Processor_Brand",
34
+ "21": "B-Laptops_Refresh_Rate",
35
+ "22": "I-Laptops_Refresh_Rate",
36
+ "23": "B-Digital_Cameras_Camera_Weight",
37
+ "24": "I-Digital_Cameras_Camera_Weight",
38
+ "25": "B-Laptops_Battery_Life",
39
+ "26": "I-Laptops_Battery_Life",
40
+ "27": "B-Laptops_Weight",
41
+ "28": "I-Laptops_Weight",
42
+ "29": "B-Laptops_Resolution",
43
+ "30": "I-Laptops_Resolution"
44
+ },
45
+ "initializer_range": 0.02,
46
+ "intermediate_size": 3072,
47
+ "label2id": {
48
+ "B-Digital_Cameras_Camera_Weight": 23,
49
+ "B-Digital_Cameras_Optical_Zoom": 5,
50
+ "B-Digital_Cameras_Resolution": 15,
51
+ "B-Digital_Cameras_Sensor_Size": 11,
52
+ "B-Digital_Cameras_Sensor_Type": 9,
53
+ "B-Flash_Memory_Cards_Capacity": 13,
54
+ "B-Flash_Memory_Cards_SD_Format": 3,
55
+ "B-Laptops_Battery_Life": 25,
56
+ "B-Laptops_Number_of_Cores": 7,
57
+ "B-Laptops_Processor_Brand": 19,
58
+ "B-Laptops_Processor_Speed": 17,
59
+ "B-Laptops_Refresh_Rate": 21,
60
+ "B-Laptops_Resolution": 29,
61
+ "B-Laptops_Screen_Size": 1,
62
+ "B-Laptops_Weight": 27,
63
+ "I-Digital_Cameras_Camera_Weight": 24,
64
+ "I-Digital_Cameras_Optical_Zoom": 6,
65
+ "I-Digital_Cameras_Resolution": 16,
66
+ "I-Digital_Cameras_Sensor_Size": 12,
67
+ "I-Digital_Cameras_Sensor_Type": 10,
68
+ "I-Flash_Memory_Cards_Capacity": 14,
69
+ "I-Flash_Memory_Cards_SD_Format": 4,
70
+ "I-Laptops_Battery_Life": 26,
71
+ "I-Laptops_Number_of_Cores": 8,
72
+ "I-Laptops_Processor_Brand": 20,
73
+ "I-Laptops_Processor_Speed": 18,
74
+ "I-Laptops_Refresh_Rate": 22,
75
+ "I-Laptops_Resolution": 30,
76
+ "I-Laptops_Screen_Size": 2,
77
+ "I-Laptops_Weight": 28,
78
+ "O": 0
79
+ },
80
+ "layer_norm_eps": 1e-12,
81
+ "max_position_embeddings": 512,
82
+ "model_type": "bert",
83
+ "num_attention_heads": 12,
84
+ "num_hidden_layers": 12,
85
+ "pad_token_id": 0,
86
+ "position_embedding_type": "absolute",
87
+ "torch_dtype": "float32",
88
+ "transformers_version": "4.30.1",
89
+ "type_vocab_size": 2,
90
+ "use_cache": true,
91
+ "vocab_size": 28996
92
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3116567001eb9a2e617e20ec057a60a0e847d2ba27fdb35af0cbe99d1bb0e92d
3
+ size 431046253
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b81783013399684d6fe8ef73fcc0ced5047afdadde7f99eb6e0dcfcb9562d3b3
3
+ size 4027
vocab.txt ADDED
The diff for this file is too large to render. See raw diff