Commit
•
598a8eb
1
Parent(s):
f38f5db
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +33 -0
- gaudi_config.json +30 -0
- logs/1658737170.3634062/events.out.tfevents.1658737170.ip-172-31-83-241.145.1 +3 -0
- logs/events.out.tfevents.1658737170.ip-172-31-83-241.145.0 +3 -0
- pytorch_model.bin +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,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "neg",
|
13 |
+
"1": "pos"
|
14 |
+
},
|
15 |
+
"initializer_range": 0.02,
|
16 |
+
"label2id": {
|
17 |
+
"neg": "0",
|
18 |
+
"pos": "1"
|
19 |
+
},
|
20 |
+
"max_position_embeddings": 512,
|
21 |
+
"model_type": "distilbert",
|
22 |
+
"n_heads": 12,
|
23 |
+
"n_layers": 6,
|
24 |
+
"pad_token_id": 0,
|
25 |
+
"problem_type": "single_label_classification",
|
26 |
+
"qa_dropout": 0.1,
|
27 |
+
"seq_classif_dropout": 0.2,
|
28 |
+
"sinusoidal_pos_embds": false,
|
29 |
+
"tie_weights_": true,
|
30 |
+
"torch_dtype": "float32",
|
31 |
+
"transformers_version": "4.20.1",
|
32 |
+
"vocab_size": 30522
|
33 |
+
}
|
gaudi_config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"hmp_bf16_ops": [
|
3 |
+
"add",
|
4 |
+
"addmm",
|
5 |
+
"bmm",
|
6 |
+
"div",
|
7 |
+
"dropout",
|
8 |
+
"gelu",
|
9 |
+
"iadd",
|
10 |
+
"linear",
|
11 |
+
"layer_norm",
|
12 |
+
"matmul",
|
13 |
+
"mm",
|
14 |
+
"rsub",
|
15 |
+
"softmax",
|
16 |
+
"truediv"
|
17 |
+
],
|
18 |
+
"hmp_fp32_ops": [
|
19 |
+
"embedding",
|
20 |
+
"nll_loss",
|
21 |
+
"log_softmax"
|
22 |
+
],
|
23 |
+
"hmp_is_verbose": false,
|
24 |
+
"hmp_opt_level": "O1",
|
25 |
+
"optimum_version": "1.3.0",
|
26 |
+
"transformers_version": "4.20.1",
|
27 |
+
"use_fused_adam": true,
|
28 |
+
"use_fused_clip_norm": true,
|
29 |
+
"use_habana_mixed_precision": true
|
30 |
+
}
|
logs/1658737170.3634062/events.out.tfevents.1658737170.ip-172-31-83-241.145.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5735083ff12545adc283888419674cc2925b974cb3681d19f3f839480cf7cda2
|
3 |
+
size 5624
|
logs/events.out.tfevents.1658737170.ip-172-31-83-241.145.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ed58ddcae16bbbd1c716ec9bb79d25548d48ce359a98f9589bfb117d143ce506
|
3 |
+
size 4262
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cee244c381b38244fe66e8c0527085fed5d7bfbdd1946517cc2ddbc7bbb95e3e
|
3 |
+
size 267852913
|
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:f3e0bb6d3ab62d917d8285e2df100d5a50dafc79b13b37e5768bcba7fe1d3696
|
3 |
+
size 3439
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|