casonshep commited on
Commit
3b6ca94
1 Parent(s): 6dbfa8f

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": "Society & Culture",
13
+ "1": "Science & Mathematics",
14
+ "2": "Health",
15
+ "3": "Education & Reference",
16
+ "4": "Computers & Internet",
17
+ "5": "Sports",
18
+ "6": "Business & Finance",
19
+ "7": "Entertainment & Music",
20
+ "8": "Family & Relationships",
21
+ "9": "Politics & Government"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "label2id": {
25
+ "Business & Finance": 6,
26
+ "Computers & Internet": 4,
27
+ "Education & Reference": 3,
28
+ "Entertainment & Music": 7,
29
+ "Family & Relationships": 8,
30
+ "Health": 2,
31
+ "Politics & Government": 9,
32
+ "Science & Mathematics": 1,
33
+ "Society & Culture": 0,
34
+ "Sports": 5
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": "single_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.31.0",
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:daaae17437b376c6b80b8535a303831da3ddccfe1f0b3e4d08dcbb517318c7d2
3
+ size 267880109
runs/Aug04_17-20-52_3af619c66572/events.out.tfevents.1691169663.3af619c66572.1773.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4078b43198dcdae366d7836fa8aad632374bad1c0190eb45cc387d5ca57c047
3
+ size 5375
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,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "do_lower_case": true,
6
+ "mask_token": "[MASK]",
7
+ "model_max_length": 512,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce3fc455a663f4e3d1ce45043489498fc107fa5b0fc510a81330286538544fc9
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff