0uz2z commited on
Commit
9004cf2
1 Parent(s): 7dcc2c5

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
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": "0",
13
+ "1": "B-Rating",
14
+ "2": "I-Rating",
15
+ "3": "B-Amenity",
16
+ "4": "I-Amenity",
17
+ "5": "B-Location",
18
+ "6": "I-Location",
19
+ "7": "B-Restaurant_Name",
20
+ "8": "I-Restaurant_Name",
21
+ "9": "B-Price",
22
+ "10": "B-Hours",
23
+ "11": "I-Hours",
24
+ "12": "B-Dish",
25
+ "13": "I-Dish",
26
+ "14": "B-Cuisine",
27
+ "15": "I-Price",
28
+ "16": "I-Cuisine"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "0": 0,
33
+ "B-Amenity": 3,
34
+ "B-Cuisine": 14,
35
+ "B-Dish": 12,
36
+ "B-Hours": 10,
37
+ "B-Location": 5,
38
+ "B-Price": 9,
39
+ "B-Rating": 1,
40
+ "B-Restaurant_Name": 7,
41
+ "I-Amenity": 4,
42
+ "I-Cuisine": 16,
43
+ "I-Dish": 13,
44
+ "I-Hours": 11,
45
+ "I-Location": 6,
46
+ "I-Price": 15,
47
+ "I-Rating": 2,
48
+ "I-Restaurant_Name": 8
49
+ },
50
+ "max_position_embeddings": 512,
51
+ "model_type": "distilbert",
52
+ "n_heads": 12,
53
+ "n_layers": 6,
54
+ "pad_token_id": 0,
55
+ "qa_dropout": 0.1,
56
+ "seq_classif_dropout": 0.2,
57
+ "sinusoidal_pos_embds": false,
58
+ "tie_weights_": true,
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.38.2",
61
+ "vocab_size": 30522
62
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b2698aaf3e9fec992de93fb510a4d19aac3560dd1b3d025986c5f2e19f518ac
3
+ size 265516156
runs/Mar18_20-09-54_3469c9062b70/events.out.tfevents.1710792597.3469c9062b70.411.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bb5f95ddcbc775f24369fc1214c0f69fa84cd30ed4dff8828fbb7ee2a2c73f5
3
+ size 5954
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 1000000000000000019884624838656,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c219970142c1802fdfe5a5b0ccbd961d961f60f8cd7f8c058fc2eb03d7a463e
3
+ size 4920
vocab.txt ADDED
The diff for this file is too large to render. See raw diff