leireher commited on
Commit
4b1296a
1 Parent(s): ece1aa1

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "fiction",
13
+ "1": "romance",
14
+ "2": "fantasy",
15
+ "3": "young adult",
16
+ "4": "nonfiction",
17
+ "5": "mystery",
18
+ "6": "adventure",
19
+ "7": "historical",
20
+ "8": "paranormal",
21
+ "9": "childrens"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "label2id": {
25
+ "adventure": 6,
26
+ "childrens": 9,
27
+ "fantasy": 2,
28
+ "fiction": 0,
29
+ "historical": 7,
30
+ "mystery": 5,
31
+ "nonfiction": 4,
32
+ "paranormal": 8,
33
+ "romance": 1,
34
+ "young adult": 3
35
+ },
36
+ "max_position_embeddings": 512,
37
+ "model_type": "distilbert",
38
+ "n_heads": 12,
39
+ "n_layers": 6,
40
+ "pad_token_id": 0,
41
+ "problem_type": "multi_label_classification",
42
+ "qa_dropout": 0.1,
43
+ "seq_classif_dropout": 0.2,
44
+ "sinusoidal_pos_embds": false,
45
+ "tie_weights_": true,
46
+ "torch_dtype": "float32",
47
+ "transformers_version": "4.28.1",
48
+ "vocab_size": 30522
49
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ec0b461e92479c1a30718556220110fa03e003d4468e1d365dfd6490e7cded4
3
+ size 267880109
runs/May11_16-01-27_6b17f8a10b55/1683820899.9372718/events.out.tfevents.1683820899.6b17f8a10b55.31.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21742fad313c35234ff443cf70e96f16658683224368cd769cb9a6c3b942647e
3
+ size 5903
runs/May11_16-01-27_6b17f8a10b55/events.out.tfevents.1683820899.6b17f8a10b55.31.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2efd9cb49125d835346c624c416dd8ea176ea890ca13ce60c7c6d721fef6a438
3
+ size 5148
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": false,
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": "DistilBertTokenizer",
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:51abffb23100edcda3307446f21d97beafcec5c0b665fa9481b90f948de939a3
3
+ size 3707
vocab.txt ADDED
The diff for this file is too large to render. See raw diff