hts98 commited on
Commit
ad35525
·
1 Parent(s): 7dca851

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "FacebookAI/roberta-base",
3
+ "architectures": [
4
+ "RobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "finetuning_task": "ner",
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 768,
14
+ "id2label": {
15
+ "0": "O",
16
+ "1": "B-BATTERY",
17
+ "2": "I-BATTERY",
18
+ "3": "B-CAMERA",
19
+ "4": "I-CAMERA",
20
+ "5": "B-GENERAL",
21
+ "6": "I-GENERAL",
22
+ "7": "B-SER&ACC",
23
+ "8": "I-SER&ACC",
24
+ "9": "B-PERFORMANCE",
25
+ "10": "I-PERFORMANCE",
26
+ "11": "B-DESIGN",
27
+ "12": "I-DESIGN",
28
+ "13": "B-FEATURES",
29
+ "14": "I-FEATURES",
30
+ "15": "B-PRICE",
31
+ "16": "I-PRICE",
32
+ "17": "B-SCREEN",
33
+ "18": "I-SCREEN",
34
+ "19": "B-STORAGE",
35
+ "20": "I-STORAGE"
36
+ },
37
+ "initializer_range": 0.02,
38
+ "intermediate_size": 3072,
39
+ "label2id": {
40
+ "B-BATTERY": 1,
41
+ "B-CAMERA": 3,
42
+ "B-DESIGN": 11,
43
+ "B-FEATURES": 13,
44
+ "B-GENERAL": 5,
45
+ "B-PERFORMANCE": 9,
46
+ "B-PRICE": 15,
47
+ "B-SCREEN": 17,
48
+ "B-SER&ACC": 7,
49
+ "B-STORAGE": 19,
50
+ "I-BATTERY": 2,
51
+ "I-CAMERA": 4,
52
+ "I-DESIGN": 12,
53
+ "I-FEATURES": 14,
54
+ "I-GENERAL": 6,
55
+ "I-PERFORMANCE": 10,
56
+ "I-PRICE": 16,
57
+ "I-SCREEN": 18,
58
+ "I-SER&ACC": 8,
59
+ "I-STORAGE": 20,
60
+ "O": 0
61
+ },
62
+ "layer_norm_eps": 1e-05,
63
+ "max_position_embeddings": 514,
64
+ "model_type": "roberta",
65
+ "num_attention_heads": 12,
66
+ "num_hidden_layers": 12,
67
+ "pad_token_id": 1,
68
+ "position_embedding_type": "absolute",
69
+ "torch_dtype": "float32",
70
+ "transformers_version": "4.32.0.dev0",
71
+ "type_vocab_size": 1,
72
+ "use_cache": true,
73
+ "vocab_size": 50265
74
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:553243783c8cac2335a9bfd1002a6d4e5ee71e4b9032fec9b6bf0bb4d8ede082
3
+ size 496353510
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "bos_token": "<s>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "cls_token": "<s>",
6
+ "eos_token": "</s>",
7
+ "errors": "replace",
8
+ "mask_token": "<mask>",
9
+ "model_max_length": 512,
10
+ "pad_token": "<pad>",
11
+ "sep_token": "</s>",
12
+ "tokenizer_class": "RobertaTokenizer",
13
+ "trim_offsets": true,
14
+ "unk_token": "<unk>"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed46253283f06a2971b4cacac55c4e83e7ac6a07bc46f91ce90274cbab902cef
3
+ size 4472
vocab.json ADDED
The diff for this file is too large to render. See raw diff