Wenkai Li
commited on
Commit
•
7f53106
1
Parent(s):
1a4c33e
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +25 -0
- pytorch_model.bin +3 -0
- runs/Jul20_02-43-48_850fad28d294/1658285043.2310767/events.out.tfevents.1658285043.850fad28d294.77.1 +3 -0
- runs/Jul20_02-43-48_850fad28d294/1658285215.7353935/events.out.tfevents.1658285215.850fad28d294.77.2 +3 -0
- runs/Jul20_02-43-48_850fad28d294/events.out.tfevents.1658285043.850fad28d294.77.0 +3 -0
- runs/Jul20_02-47-10_850fad28d294/1658285234.107303/events.out.tfevents.1658285234.850fad28d294.77.4 +3 -0
- runs/Jul20_02-47-10_850fad28d294/events.out.tfevents.1658285234.850fad28d294.77.3 +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,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"initializer_range": 0.02,
|
12 |
+
"max_position_embeddings": 512,
|
13 |
+
"model_type": "distilbert",
|
14 |
+
"n_heads": 12,
|
15 |
+
"n_layers": 6,
|
16 |
+
"pad_token_id": 0,
|
17 |
+
"problem_type": "single_label_classification",
|
18 |
+
"qa_dropout": 0.1,
|
19 |
+
"seq_classif_dropout": 0.2,
|
20 |
+
"sinusoidal_pos_embds": false,
|
21 |
+
"tie_weights_": true,
|
22 |
+
"torch_dtype": "float32",
|
23 |
+
"transformers_version": "4.20.1",
|
24 |
+
"vocab_size": 30522
|
25 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80ec397a7666da8c43f2273cf2afac87bc8e8b3203cbfc90f2933e1b375cd28a
|
3 |
+
size 267854321
|
runs/Jul20_02-43-48_850fad28d294/1658285043.2310767/events.out.tfevents.1658285043.850fad28d294.77.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:350c0bb13891091edfe5ed96d5280344f2d269112e9f3141dc0db5e26728e339
|
3 |
+
size 5435
|
runs/Jul20_02-43-48_850fad28d294/1658285215.7353935/events.out.tfevents.1658285215.850fad28d294.77.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:28731ee866c2cb1a9b86647eea2570e64675cbdf051b9ffc41dfa4bf2dbe14cc
|
3 |
+
size 5435
|
runs/Jul20_02-43-48_850fad28d294/events.out.tfevents.1658285043.850fad28d294.77.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f76b7b2e95a36a19b9f58521b23f64a5c601963520cf708b5b4167962453a6d1
|
3 |
+
size 7211
|
runs/Jul20_02-47-10_850fad28d294/1658285234.107303/events.out.tfevents.1658285234.850fad28d294.77.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b41ea1af3deb57c1335d0f724943dab6e0e824e6666ade863c2e1da7fa58f2a
|
3 |
+
size 5435
|
runs/Jul20_02-47-10_850fad28d294/events.out.tfevents.1658285234.850fad28d294.77.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37c5a61a79261dc0909d91d3e43cbc6f8e83c73ca11952c7cfc8abf243eecdbe
|
3 |
+
size 4395
|
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 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": true,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "distilbert-base-uncased",
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
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:f027816e89ea7b48180df6100d58f5328d188e2fdc5c1d028e3f01395cb94fe2
|
3 |
+
size 3375
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|