pszemraj commited on
Commit
0028c59
1 Parent(s): bd6e7a6

Training in progress, epoch 0

Browse files
added_tokens.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "[CLS]": 101,
3
+ "[MASK]": 103,
4
+ "[PAD]": 0,
5
+ "[SEP]": 102,
6
+ "[UNK]": 100
7
+ }
config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/mobilebert-uncased",
3
+ "architectures": [
4
+ "MobileBertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_activation": false,
8
+ "classifier_dropout": null,
9
+ "embedding_size": 128,
10
+ "finetuning_task": "text-classification",
11
+ "hidden_act": "relu",
12
+ "hidden_dropout_prob": 0.0,
13
+ "hidden_size": 512,
14
+ "id2label": {
15
+ "0": "History & Politics",
16
+ "1": "Health & Medicine",
17
+ "2": "Mystery & Thriller",
18
+ "3": "Arts & Design",
19
+ "4": "Self-Help & Wellness",
20
+ "5": "Sports & Recreation",
21
+ "6": "Non-Fiction",
22
+ "7": "Science Fiction & Fantasy",
23
+ "8": "Countries & Geography",
24
+ "9": "Other",
25
+ "10": "Nature & Environment",
26
+ "11": "Business & Finance",
27
+ "12": "Romance",
28
+ "13": "Philosophy & Religion",
29
+ "14": "Literature & Fiction",
30
+ "15": "Science & Technology",
31
+ "16": "Children & Young Adult",
32
+ "17": "Food & Cooking"
33
+ },
34
+ "initializer_range": 0.02,
35
+ "intermediate_size": 512,
36
+ "intra_bottleneck_size": 128,
37
+ "key_query_shared_bottleneck": true,
38
+ "label2id": {
39
+ "Arts & Design": 3,
40
+ "Business & Finance": 11,
41
+ "Children & Young Adult": 16,
42
+ "Countries & Geography": 8,
43
+ "Food & Cooking": 17,
44
+ "Health & Medicine": 1,
45
+ "History & Politics": 0,
46
+ "Literature & Fiction": 14,
47
+ "Mystery & Thriller": 2,
48
+ "Nature & Environment": 10,
49
+ "Non-Fiction": 6,
50
+ "Other": 9,
51
+ "Philosophy & Religion": 13,
52
+ "Romance": 12,
53
+ "Science & Technology": 15,
54
+ "Science Fiction & Fantasy": 7,
55
+ "Self-Help & Wellness": 4,
56
+ "Sports & Recreation": 5
57
+ },
58
+ "layer_norm_eps": 1e-12,
59
+ "max_position_embeddings": 512,
60
+ "model_type": "mobilebert",
61
+ "normalization_type": "no_norm",
62
+ "num_attention_heads": 4,
63
+ "num_feedforward_networks": 4,
64
+ "num_hidden_layers": 24,
65
+ "pad_token_id": 0,
66
+ "problem_type": "multi_label_classification",
67
+ "torch_dtype": "float32",
68
+ "transformers_version": "4.35.0.dev0",
69
+ "trigram_input": true,
70
+ "true_hidden_size": 128,
71
+ "type_vocab_size": 2,
72
+ "use_bottleneck": true,
73
+ "use_bottleneck_attention": false,
74
+ "vocab_size": 30522
75
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05b056ac48e8423f97ebc04621f81c49c51aa296e1c3268dc7f0a6dd23a47deb
3
+ size 98502952
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,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "additional_special_tokens": [],
45
+ "clean_up_tokenization_spaces": true,
46
+ "cls_token": "[CLS]",
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "MobileBertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eb1fc2ef6ebb658b24fd530cd477d024d5d96d2b62c9e03d1292d21e8d69940
3
+ size 4155
vocab.txt ADDED
The diff for this file is too large to render. See raw diff