Upload test with huggingface_hub
#1
by
morit
- opened
- test/all_results.json +8 -0
- test/config.json +38 -0
- test/pytorch_model.bin +3 -0
- test/runs/Dec07_16-34-56_localhost/1670430925.7995472/events.out.tfevents.1670430925.localhost.986.1 +3 -0
- test/runs/Dec07_16-34-56_localhost/events.out.tfevents.1670430925.localhost.986.0 +3 -0
- test/runs/Dec07_16-41-23_localhost/1670431290.3785944/events.out.tfevents.1670431290.localhost.1053.1 +3 -0
- test/runs/Dec07_16-41-23_localhost/events.out.tfevents.1670431290.localhost.1053.0 +3 -0
- test/runs/Dec07_17-56-47_localhost/1670435814.3730218/events.out.tfevents.1670435814.localhost.1117.1 +3 -0
- test/runs/Dec07_17-56-47_localhost/events.out.tfevents.1670435814.localhost.1117.0 +3 -0
- test/runs/Dec07_18-07-58_localhost/1670436485.0261753/events.out.tfevents.1670436485.localhost.1190.1 +3 -0
- test/runs/Dec07_18-07-58_localhost/events.out.tfevents.1670436485.localhost.1190.0 +3 -0
- test/runs/Dec07_19-37-00_localhost/1670441826.744704/events.out.tfevents.1670441826.localhost.1288.1 +3 -0
- test/runs/Dec07_19-37-00_localhost/events.out.tfevents.1670441826.localhost.1288.0 +3 -0
- test/runs/Dec07_19-38-14_localhost/1670441900.5523436/events.out.tfevents.1670441900.localhost.1349.1 +3 -0
- test/runs/Dec07_19-38-14_localhost/events.out.tfevents.1670441900.localhost.1349.0 +3 -0
- test/runs/Dec08_07-54-02_localhost/1670486048.6014338/events.out.tfevents.1670486048.localhost.1428.1 +3 -0
- test/runs/Dec08_07-54-02_localhost/events.out.tfevents.1670486048.localhost.1428.0 +3 -0
- test/runs/Dec08_07-58-56_localhost/1670486343.4336984/events.out.tfevents.1670486343.localhost.1487.1 +3 -0
- test/runs/Dec08_07-58-56_localhost/events.out.tfevents.1670486343.localhost.1487.0 +3 -0
- test/runs/Dec08_08-03-55_localhost/1670486642.1891026/events.out.tfevents.1670486642.localhost.1552.1 +3 -0
- test/runs/Dec08_08-03-55_localhost/events.out.tfevents.1670486642.localhost.1552.0 +3 -0
- test/special_tokens_map.json +7 -0
- test/tokenizer.json +0 -0
- test/tokenizer_config.json +17 -0
- test/train_results.json +8 -0
- test/trainer_state.json +25 -0
- test/training_args.bin +3 -0
- test/vocab.txt +0 -0
test/all_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 3.0,
|
3 |
+
"train_loss": 0.8742923736572266,
|
4 |
+
"train_runtime": 81.0645,
|
5 |
+
"train_samples": 1,
|
6 |
+
"train_samples_per_second": 0.296,
|
7 |
+
"train_steps_per_second": 0.037
|
8 |
+
}
|
test/config.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Sahajtomar/German_Zeroshot",
|
3 |
+
"architectures": [
|
4 |
+
"BertForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"finetuning_task": "xnli",
|
9 |
+
"gradient_checkpointing": false,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 1024,
|
13 |
+
"id2label": {
|
14 |
+
"0": "entailment",
|
15 |
+
"1": "neutral",
|
16 |
+
"2": "contradiction"
|
17 |
+
},
|
18 |
+
"initializer_range": 0.02,
|
19 |
+
"intermediate_size": 4096,
|
20 |
+
"label2id": {
|
21 |
+
"contradiction": 2,
|
22 |
+
"entailment": 0,
|
23 |
+
"neutral": 1
|
24 |
+
},
|
25 |
+
"layer_norm_eps": 1e-12,
|
26 |
+
"max_position_embeddings": 512,
|
27 |
+
"model_type": "bert",
|
28 |
+
"num_attention_heads": 16,
|
29 |
+
"num_hidden_layers": 24,
|
30 |
+
"pad_token_id": 0,
|
31 |
+
"position_embedding_type": "absolute",
|
32 |
+
"problem_type": "single_label_classification",
|
33 |
+
"torch_dtype": "float32",
|
34 |
+
"transformers_version": "4.25.1",
|
35 |
+
"type_vocab_size": 2,
|
36 |
+
"use_cache": true,
|
37 |
+
"vocab_size": 31102
|
38 |
+
}
|
test/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3be35e234cb2ed6546266729dadb8aeec6e3a4a9945be3bc949f5d8b04bc49c8
|
3 |
+
size 1343088885
|
test/runs/Dec07_16-34-56_localhost/1670430925.7995472/events.out.tfevents.1670430925.localhost.986.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:94cc9a1dfe536f61b766890996bfa9ba1ba8a11ee2f67c84ee41e6e2eb3c0878
|
3 |
+
size 5491
|
test/runs/Dec07_16-34-56_localhost/events.out.tfevents.1670430925.localhost.986.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d848cff8cf6cf3fc8cc70d503435fb8206a5f3807560281be05615b390d788f
|
3 |
+
size 4280
|
test/runs/Dec07_16-41-23_localhost/1670431290.3785944/events.out.tfevents.1670431290.localhost.1053.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:afe21d40b0b95a20d523e2310aaa058f7a472848f0985bbe1f548a384a38e594
|
3 |
+
size 5491
|
test/runs/Dec07_16-41-23_localhost/events.out.tfevents.1670431290.localhost.1053.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e50bec2eb745713348c45b874f1600bfbeed030bb6d1f768aa1973bc95c33ae
|
3 |
+
size 4280
|
test/runs/Dec07_17-56-47_localhost/1670435814.3730218/events.out.tfevents.1670435814.localhost.1117.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c5afcbef1d7357993f458cf985a2f40102779c2acd7c1eccb91780090edccd65
|
3 |
+
size 5491
|
test/runs/Dec07_17-56-47_localhost/events.out.tfevents.1670435814.localhost.1117.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c173505e9894b982ec51626626853032da00265b3f09faa6646f86a4cf1057d
|
3 |
+
size 4280
|
test/runs/Dec07_18-07-58_localhost/1670436485.0261753/events.out.tfevents.1670436485.localhost.1190.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ed4bc5071db1497bfc13b9cb1ac773e085bb7a68cf453573b9c53dd1f8b8e0cf
|
3 |
+
size 5491
|
test/runs/Dec07_18-07-58_localhost/events.out.tfevents.1670436485.localhost.1190.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0184586137fabc60730aea14e04e04646fb272ca9fffa32f850b59f92cb478be
|
3 |
+
size 4280
|
test/runs/Dec07_19-37-00_localhost/1670441826.744704/events.out.tfevents.1670441826.localhost.1288.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0494ea9d0f2f7e5067dc269c95897d0f784dce96f8da468b86202e1bb12c2df2
|
3 |
+
size 5491
|
test/runs/Dec07_19-37-00_localhost/events.out.tfevents.1670441826.localhost.1288.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48905ed3b22a8f11cffb36275d31aab9f3d5fdf0ab728a666bb2d2e69cd08bb3
|
3 |
+
size 4280
|
test/runs/Dec07_19-38-14_localhost/1670441900.5523436/events.out.tfevents.1670441900.localhost.1349.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8e46800f4445e681bdab64c413ffaedbd122ecc2aab730395a61a52d9bdb98dc
|
3 |
+
size 5491
|
test/runs/Dec07_19-38-14_localhost/events.out.tfevents.1670441900.localhost.1349.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29d9e35d1d508171d4b719f5efe97d697c631ca63f18823f5ad53607cf7e23ee
|
3 |
+
size 4280
|
test/runs/Dec08_07-54-02_localhost/1670486048.6014338/events.out.tfevents.1670486048.localhost.1428.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0bfdc151da7909fe72ff8b9006081e691ad86e90192291757db20e76056fd29
|
3 |
+
size 5491
|
test/runs/Dec08_07-54-02_localhost/events.out.tfevents.1670486048.localhost.1428.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfe22a681f8327bfc8173a636dface3ced2e418f82ecb79dd6b4ac56e762f47e
|
3 |
+
size 4280
|
test/runs/Dec08_07-58-56_localhost/1670486343.4336984/events.out.tfevents.1670486343.localhost.1487.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48e7bbcb6e38a13a15e14e4ae3e1b67fbd222c4695c307ffff3d2310465d3e1a
|
3 |
+
size 5491
|
test/runs/Dec08_07-58-56_localhost/events.out.tfevents.1670486343.localhost.1487.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37386e0550934597afe6078ac5e12939b09f3a9889f3785c62acb88a1d900394
|
3 |
+
size 4280
|
test/runs/Dec08_08-03-55_localhost/1670486642.1891026/events.out.tfevents.1670486642.localhost.1552.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c5573632c4db63521c656b9bfb89816a92303726d73fdeca88dae709af2d8ef8
|
3 |
+
size 5491
|
test/runs/Dec08_08-03-55_localhost/events.out.tfevents.1670486642.localhost.1552.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b21ebd2707358a67701bf825943473eec89d857a9a71e53a59db0622fd3005db
|
3 |
+
size 4280
|
test/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 |
+
}
|
test/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
test/tokenizer_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_basic_tokenize": true,
|
4 |
+
"do_lower_case": false,
|
5 |
+
"mask_token": "[MASK]",
|
6 |
+
"max_len": 512,
|
7 |
+
"model_max_length": 512,
|
8 |
+
"name_or_path": "Sahajtomar/German_Zeroshot",
|
9 |
+
"never_split": null,
|
10 |
+
"pad_token": "[PAD]",
|
11 |
+
"sep_token": "[SEP]",
|
12 |
+
"special_tokens_map_file": null,
|
13 |
+
"strip_accents": false,
|
14 |
+
"tokenize_chinese_chars": true,
|
15 |
+
"tokenizer_class": "BertTokenizer",
|
16 |
+
"unk_token": "[UNK]"
|
17 |
+
}
|
test/train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 3.0,
|
3 |
+
"train_loss": 0.8742923736572266,
|
4 |
+
"train_runtime": 81.0645,
|
5 |
+
"train_samples": 1,
|
6 |
+
"train_samples_per_second": 0.296,
|
7 |
+
"train_steps_per_second": 0.037
|
8 |
+
}
|
test/trainer_state.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 3.0,
|
5 |
+
"global_step": 3,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 3.0,
|
12 |
+
"step": 3,
|
13 |
+
"total_flos": 5591607072768.0,
|
14 |
+
"train_loss": 0.8742923736572266,
|
15 |
+
"train_runtime": 81.0645,
|
16 |
+
"train_samples_per_second": 0.296,
|
17 |
+
"train_steps_per_second": 0.037
|
18 |
+
}
|
19 |
+
],
|
20 |
+
"max_steps": 3,
|
21 |
+
"num_train_epochs": 3,
|
22 |
+
"total_flos": 5591607072768.0,
|
23 |
+
"trial_name": null,
|
24 |
+
"trial_params": null
|
25 |
+
}
|
test/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0804a79c182df891832ab84fb5cfc92322b5e9549e072d404f308b897f196423
|
3 |
+
size 3387
|
test/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|