ethannhzhouu
commited on
Commit
•
e418538
1
Parent(s):
0276c7d
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +49 -0
- pytorch_model.bin +3 -0
- runs/Aug03_20-56-39_f61c833468f2/events.out.tfevents.1691096210.f61c833468f2.2283.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +14 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.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:5eef00d396ab044614cc5832668cc3db6bd59307cad2b49d356e8b9492fbfe09
|
3 |
+
size 267880109
|
runs/Aug03_20-56-39_f61c833468f2/events.out.tfevents.1691096210.f61c833468f2.2283.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:342fa2116740798b87a822aa6514e60ae78e60c247dbdca488d4022d5c985748
|
3 |
+
size 5825
|
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:6b65ab899d4f7ce8ef44a8930004a32b61625ce7400d4310948438835217f9dd
|
3 |
+
size 3963
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|