tantb commited on
Commit
5201859
1 Parent(s): 0e7d615

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "/kaggle/input/ner-dataset-2/checkpoint",
3
  "architectures": [
4
  "BertForTokenClassification"
5
  ],
@@ -10,60 +10,60 @@
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
12
  "id2label": {
13
- "0": "0",
14
- "1": "B-Flash_Memory_Cards_SD_Format",
15
- "2": "I-Flash_Memory_Cards_SD_Format",
16
- "3": "B-Digital_Cameras_Sensor_Type",
17
- "4": "I-Digital_Cameras_Sensor_Type",
18
- "5": "B-Digital_Cameras_Sensor_Size",
19
- "6": "I-Digital_Cameras_Sensor_Size",
20
- "7": "B-Laptops_Processor_Brand",
21
- "8": "I-Laptops_Processor_Brand",
22
- "9": "B-Laptops_Number_of_Cores",
23
- "10": "I-Laptops_Number_of_Cores",
24
- "11": "B-Laptops_Resolution",
25
- "12": "I-Laptops_Resolution",
26
- "13": "B-Digital_Cameras_Optical_Zoom",
27
- "14": "I-Digital_Cameras_Optical_Zoom",
28
- "15": "B-Laptops_Screen_Size",
29
- "16": "I-Laptops_Screen_Size",
30
- "17": "B-Laptops_Processor_Speed",
31
- "18": "I-Laptops_Processor_Speed",
32
- "19": "B-Flash_Memory_Cards_Capacity",
33
- "20": "I-Flash_Memory_Cards_Capacity",
34
- "21": "B-Digital_Cameras_Resolution",
35
- "22": "I-Digital_Cameras_Resolution",
36
- "23": "B-Laptops_Battery_Life",
37
- "24": "I-Laptops_Battery_Life"
38
  },
39
  "initializer_range": 0.02,
40
  "intermediate_size": 3072,
41
  "label2id": {
42
- "0": 0,
43
- "B-Digital_Cameras_Optical_Zoom": 13,
44
- "B-Digital_Cameras_Resolution": 21,
45
- "B-Digital_Cameras_Sensor_Size": 5,
46
- "B-Digital_Cameras_Sensor_Type": 3,
47
- "B-Flash_Memory_Cards_Capacity": 19,
48
- "B-Flash_Memory_Cards_SD_Format": 1,
49
- "B-Laptops_Battery_Life": 23,
50
- "B-Laptops_Number_of_Cores": 9,
51
- "B-Laptops_Processor_Brand": 7,
52
- "B-Laptops_Processor_Speed": 17,
53
- "B-Laptops_Resolution": 11,
54
- "B-Laptops_Screen_Size": 15,
55
- "I-Digital_Cameras_Optical_Zoom": 14,
56
- "I-Digital_Cameras_Resolution": 22,
57
- "I-Digital_Cameras_Sensor_Size": 6,
58
- "I-Digital_Cameras_Sensor_Type": 4,
59
- "I-Flash_Memory_Cards_Capacity": 20,
60
- "I-Flash_Memory_Cards_SD_Format": 2,
61
- "I-Laptops_Battery_Life": 24,
62
- "I-Laptops_Number_of_Cores": 10,
63
- "I-Laptops_Processor_Brand": 8,
64
- "I-Laptops_Processor_Speed": 18,
65
- "I-Laptops_Resolution": 12,
66
- "I-Laptops_Screen_Size": 16
67
  },
68
  "layer_norm_eps": 1e-12,
69
  "max_position_embeddings": 512,
 
1
  {
2
+ "_name_or_path": "bert-base-cased",
3
  "architectures": [
4
  "BertForTokenClassification"
5
  ],
 
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
12
  "id2label": {
13
+ "0": "O",
14
+ "1": "B-Laptops_Resolution",
15
+ "2": "I-Laptops_Resolution",
16
+ "3": "B-Laptops_Screen_Size",
17
+ "4": "I-Laptops_Screen_Size",
18
+ "5": "B-Laptops_Battery_Life",
19
+ "6": "I-Laptops_Battery_Life",
20
+ "7": "B-Flash_Memory_Cards_SD_Format",
21
+ "8": "I-Flash_Memory_Cards_SD_Format",
22
+ "9": "B-Digital_Cameras_Sensor_Type",
23
+ "10": "I-Digital_Cameras_Sensor_Type",
24
+ "11": "B-Digital_Cameras_Optical_Zoom",
25
+ "12": "I-Digital_Cameras_Optical_Zoom",
26
+ "13": "B-Laptops_Number_of_Cores",
27
+ "14": "I-Laptops_Number_of_Cores",
28
+ "15": "B-Laptops_Processor_Brand",
29
+ "16": "I-Laptops_Processor_Brand",
30
+ "17": "B-Digital_Cameras_Resolution",
31
+ "18": "I-Digital_Cameras_Resolution",
32
+ "19": "B-Digital_Cameras_Sensor_Size",
33
+ "20": "I-Digital_Cameras_Sensor_Size",
34
+ "21": "B-Laptops_Processor_Speed",
35
+ "22": "I-Laptops_Processor_Speed",
36
+ "23": "B-Flash_Memory_Cards_Capacity",
37
+ "24": "I-Flash_Memory_Cards_Capacity"
38
  },
39
  "initializer_range": 0.02,
40
  "intermediate_size": 3072,
41
  "label2id": {
42
+ "B-Digital_Cameras_Optical_Zoom": 11,
43
+ "B-Digital_Cameras_Resolution": 17,
44
+ "B-Digital_Cameras_Sensor_Size": 19,
45
+ "B-Digital_Cameras_Sensor_Type": 9,
46
+ "B-Flash_Memory_Cards_Capacity": 23,
47
+ "B-Flash_Memory_Cards_SD_Format": 7,
48
+ "B-Laptops_Battery_Life": 5,
49
+ "B-Laptops_Number_of_Cores": 13,
50
+ "B-Laptops_Processor_Brand": 15,
51
+ "B-Laptops_Processor_Speed": 21,
52
+ "B-Laptops_Resolution": 1,
53
+ "B-Laptops_Screen_Size": 3,
54
+ "I-Digital_Cameras_Optical_Zoom": 12,
55
+ "I-Digital_Cameras_Resolution": 18,
56
+ "I-Digital_Cameras_Sensor_Size": 20,
57
+ "I-Digital_Cameras_Sensor_Type": 10,
58
+ "I-Flash_Memory_Cards_Capacity": 24,
59
+ "I-Flash_Memory_Cards_SD_Format": 8,
60
+ "I-Laptops_Battery_Life": 6,
61
+ "I-Laptops_Number_of_Cores": 14,
62
+ "I-Laptops_Processor_Brand": 16,
63
+ "I-Laptops_Processor_Speed": 22,
64
+ "I-Laptops_Resolution": 2,
65
+ "I-Laptops_Screen_Size": 4,
66
+ "O": 0
67
  },
68
  "layer_norm_eps": 1e-12,
69
  "max_position_embeddings": 512,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5dc43da3680df510b93538e881090651c5f1660f5220c82e53903cf434dc95f0
3
  size 430978956
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:647e39c21324202f9b43f093e7e33cf9de68b77dc0980332a827d104c067efc7
3
  size 430978956
special_tokens_map.json CHANGED
@@ -1,37 +1,7 @@
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
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
tokenizer_config.json CHANGED
@@ -45,15 +45,11 @@
45
  "cls_token": "[CLS]",
46
  "do_lower_case": false,
47
  "mask_token": "[MASK]",
48
- "max_length": 512,
49
  "model_max_length": 512,
50
  "pad_token": "[PAD]",
51
  "sep_token": "[SEP]",
52
- "stride": 0,
53
  "strip_accents": null,
54
  "tokenize_chinese_chars": true,
55
  "tokenizer_class": "BertTokenizer",
56
- "truncation_side": "right",
57
- "truncation_strategy": "longest_first",
58
  "unk_token": "[UNK]"
59
  }
 
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:4a7dc9d013217beec5cf101680e829f33b6e50afd9ce6187c243b71770b4fd04
3
  size 4856
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5495824862eb1a80c4c8ebceac910e49350df38018e5f5853e40f3a6d2c6442f
3
  size 4856