leireher commited on
Commit
21dc912
1 Parent(s): ef67512

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "attention_probs_dropout_prob": 0.1,
9
+ "dim": 768,
10
+ "dropout": 0.1,
11
+ "gradient_checkpointing": false,
12
+ "hidden_act": "gelu",
13
+ "hidden_dim": 3072,
14
+ "hidden_dropout_prob": 0.1,
15
+ "id2label": {
16
+ "0": "fiction",
17
+ "1": "romance",
18
+ "2": "fantasy",
19
+ "3": "young adult",
20
+ "4": "nonfiction",
21
+ "5": "mystery",
22
+ "6": "adventure",
23
+ "7": "historical",
24
+ "8": "paranormal",
25
+ "9": "childrens"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "intermediate_size": 3072,
29
+ "label2id": {
30
+ "adventure": 6,
31
+ "childrens": 9,
32
+ "fantasy": 2,
33
+ "fiction": 0,
34
+ "historical": 7,
35
+ "mystery": 5,
36
+ "nonfiction": 4,
37
+ "paranormal": 8,
38
+ "romance": 1,
39
+ "young adult": 3
40
+ },
41
+ "layer_norm_eps": 1e-12,
42
+ "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 12,
46
+ "pad_token_id": 0,
47
+ "position_embedding_type": "absolute",
48
+ "problem_type": "multi_label_classification",
49
+ "qa_dropout": 0.1,
50
+ "seq_classif_dropout": 0.2,
51
+ "sinusoidal_pos_embds": false,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.28.1",
54
+ "type_vocab_size": 2,
55
+ "use_cache": true,
56
+ "vocab_size": 30522
57
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2de47fbdb17eb5a4f79213e6efd914e30334bec36da2e1e77fff88903918e67
3
+ size 438022445
runs/May14_11-57-05_9f48d65b3074/1684065462.1695235/events.out.tfevents.1684065462.9f48d65b3074.32.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82bcfe5f93ef5f142916e708223f280d92426547faadb63e2e3398c515fa9088
3
+ size 5888
runs/May14_11-57-05_9f48d65b3074/events.out.tfevents.1684065462.9f48d65b3074.32.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e4bba8dd6dafc8efccd2a0f8e12e8ab6b24123364206270a32a91c0eed154ff
3
+ size 5682
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a8487ee3edc7265f8579c68719e26fafaf1ca2e01ceff9311b45e5614345a11
3
+ size 3707
vocab.txt ADDED
The diff for this file is too large to render. See raw diff