SiriusW commited on
Commit
0bbbbd9
1 Parent(s): 639f25e

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
+ "2": "I-River",
14
+ "6": "I-Waterfall",
15
+ "7": "I-Difficulty",
16
+ "8": "I-Length",
17
+ "9": "I-Gradient",
18
+ "10": "I-Accessibility",
19
+ "12": "I-Weather",
20
+ "13": "I-FamilyFriendly",
21
+ "14": "I-Parking",
22
+ "15": "I-Crowded",
23
+ "17": "I-TrailSurfaceCondition",
24
+ "18": "I-Event",
25
+ "20": "I-Cave",
26
+ "21": "I-BugCondition",
27
+ "23": "I-ChildFriendly",
28
+ "24": "I-EldersFriendly"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "0": 0,
33
+ "I-Accessibility": 10,
34
+ "I-BugCondition": 21,
35
+ "I-Cave": 20,
36
+ "I-ChildFriendly": 23,
37
+ "I-Crowded": 15,
38
+ "I-Difficulty": 7,
39
+ "I-EldersFriendly": 24,
40
+ "I-Event": 18,
41
+ "I-FamilyFriendly": 13,
42
+ "I-Gradient": 9,
43
+ "I-Length": 8,
44
+ "I-Parking": 14,
45
+ "I-River": 2,
46
+ "I-TrailSurfaceCondition": 17,
47
+ "I-Waterfall": 6,
48
+ "I-Weather": 12
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.39.3",
61
+ "vocab_size": 30522
62
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35ec5aac2601946cd9bdd98a73e8bcf3a89fd608863a71c625f3f42bc2e8323c
3
+ size 265516156
runs/Apr15_01-09-40_9e2350b9fea2/events.out.tfevents.1713143384.9e2350b9fea2.442.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32a1fa706a2eccbfc2ab7ab1df6b16aa6be69a7a56f0cc158fc8b1abffcb20e3
3
+ size 6065
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": 512,
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:5f842caf77965ab62628ee0186144a650f0136bb4a878a1f0f737b272777545b
3
+ size 5088
vocab.txt ADDED
The diff for this file is too large to render. See raw diff