First model version
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- checkpoint-1000/config.json +60 -0
- checkpoint-1000/optimizer.pt +3 -0
- checkpoint-1000/pytorch_model.bin +3 -0
- checkpoint-1000/rng_state.pth +3 -0
- checkpoint-1000/scheduler.pt +3 -0
- checkpoint-1000/special_tokens_map.json +1 -0
- checkpoint-1000/tokenizer.json +0 -0
- checkpoint-1000/tokenizer_config.json +1 -0
- checkpoint-1000/trainer_state.json +28 -0
- checkpoint-1000/training_args.bin +3 -0
- checkpoint-1000/vocab.txt +0 -0
- checkpoint-1500/config.json +60 -0
- checkpoint-1500/optimizer.pt +3 -0
- checkpoint-1500/pytorch_model.bin +3 -0
- checkpoint-1500/rng_state.pth +3 -0
- checkpoint-1500/scheduler.pt +3 -0
- checkpoint-1500/special_tokens_map.json +1 -0
- checkpoint-1500/tokenizer.json +0 -0
- checkpoint-1500/tokenizer_config.json +1 -0
- checkpoint-1500/trainer_state.json +34 -0
- checkpoint-1500/training_args.bin +3 -0
- checkpoint-1500/vocab.txt +0 -0
- checkpoint-2000/config.json +60 -0
- checkpoint-2000/optimizer.pt +3 -0
- checkpoint-2000/pytorch_model.bin +3 -0
- checkpoint-2000/rng_state.pth +3 -0
- checkpoint-2000/scheduler.pt +3 -0
- checkpoint-2000/special_tokens_map.json +1 -0
- checkpoint-2000/tokenizer.json +0 -0
- checkpoint-2000/tokenizer_config.json +1 -0
- checkpoint-2000/trainer_state.json +40 -0
- checkpoint-2000/training_args.bin +3 -0
- checkpoint-2000/vocab.txt +0 -0
- checkpoint-2500/config.json +60 -0
- checkpoint-2500/optimizer.pt +3 -0
- checkpoint-2500/pytorch_model.bin +3 -0
- checkpoint-2500/rng_state.pth +3 -0
- checkpoint-2500/scheduler.pt +3 -0
- checkpoint-2500/special_tokens_map.json +1 -0
- checkpoint-2500/tokenizer.json +0 -0
- checkpoint-2500/tokenizer_config.json +1 -0
- checkpoint-2500/trainer_state.json +46 -0
- checkpoint-2500/training_args.bin +3 -0
- checkpoint-2500/vocab.txt +0 -0
- checkpoint-3000/config.json +60 -0
- checkpoint-3000/optimizer.pt +3 -0
- checkpoint-3000/pytorch_model.bin +3 -0
- checkpoint-3000/rng_state.pth +3 -0
- checkpoint-3000/scheduler.pt +3 -0
- checkpoint-3000/special_tokens_map.json +1 -0
checkpoint-1000/config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "n/a",
|
13 |
+
"1": "culture",
|
14 |
+
"2": "digital",
|
15 |
+
"3": "education",
|
16 |
+
"4": "climate change",
|
17 |
+
"5": "studying abroad",
|
18 |
+
"6": "renewable energy",
|
19 |
+
"7": "policy dialogues",
|
20 |
+
"8": "youth and the world",
|
21 |
+
"9": "natural sustainability",
|
22 |
+
"10": "health and well-being",
|
23 |
+
"11": "employment and inclusion",
|
24 |
+
"12": "european learning mobility",
|
25 |
+
"13": "research and innovation",
|
26 |
+
"14": "participation and engagement",
|
27 |
+
"15": "democratic values"
|
28 |
+
},
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"label2id": {
|
31 |
+
"climate change": 4,
|
32 |
+
"culture": 1,
|
33 |
+
"democratic values": 15,
|
34 |
+
"digital": 2,
|
35 |
+
"education": 3,
|
36 |
+
"employment and inclusion": 11,
|
37 |
+
"european learning mobility": 12,
|
38 |
+
"health and well-being": 10,
|
39 |
+
"n/a": 0,
|
40 |
+
"natural sustainability": 9,
|
41 |
+
"participation and engagement": 14,
|
42 |
+
"policy dialogues": 7,
|
43 |
+
"renewable energy": 6,
|
44 |
+
"research and innovation": 13,
|
45 |
+
"studying abroad": 5,
|
46 |
+
"youth and the world": 8
|
47 |
+
},
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "distilbert",
|
50 |
+
"n_heads": 12,
|
51 |
+
"n_layers": 6,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"qa_dropout": 0.1,
|
54 |
+
"seq_classif_dropout": 0.2,
|
55 |
+
"sinusoidal_pos_embds": false,
|
56 |
+
"tie_weights_": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"vocab_size": 30522
|
60 |
+
}
|
checkpoint-1000/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:95767c578a31d813964609d073c13d4f43ef77ed16950b62c0b5347a9cedb543
|
3 |
+
size 535786209
|
checkpoint-1000/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:10850827881f12a59be32bbc3867f9a588cc12fd2ba2faa2c16b6cf9bc79e87e
|
3 |
+
size 267903601
|
checkpoint-1000/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9fef4daa5a15555136f8017a0acdcf11d42550007acf44bcf5c3a6bdd3adb4af
|
3 |
+
size 14503
|
checkpoint-1000/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4f83269c532c4e9a8ba2ecf1bcab12e0feb2f4e34cf92313a53653115587887
|
3 |
+
size 623
|
checkpoint-1000/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
checkpoint-1000/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-1000/tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
|
checkpoint-1000/trainer_state.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.26666666666666666,
|
5 |
+
"global_step": 1000,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.13,
|
12 |
+
"learning_rate": 4.3333333333333334e-05,
|
13 |
+
"loss": 2.5673,
|
14 |
+
"step": 500
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.27,
|
18 |
+
"learning_rate": 3.6666666666666666e-05,
|
19 |
+
"loss": 2.5378,
|
20 |
+
"step": 1000
|
21 |
+
}
|
22 |
+
],
|
23 |
+
"max_steps": 3750,
|
24 |
+
"num_train_epochs": 1,
|
25 |
+
"total_flos": 971584553370624.0,
|
26 |
+
"trial_name": null,
|
27 |
+
"trial_params": null
|
28 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:736ff2f74ff7a20eb7c6ec947c546081d7c85fdea93f26ed28c58421d13dcae5
|
3 |
+
size 2991
|
checkpoint-1000/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-1500/config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "n/a",
|
13 |
+
"1": "culture",
|
14 |
+
"2": "digital",
|
15 |
+
"3": "education",
|
16 |
+
"4": "climate change",
|
17 |
+
"5": "studying abroad",
|
18 |
+
"6": "renewable energy",
|
19 |
+
"7": "policy dialogues",
|
20 |
+
"8": "youth and the world",
|
21 |
+
"9": "natural sustainability",
|
22 |
+
"10": "health and well-being",
|
23 |
+
"11": "employment and inclusion",
|
24 |
+
"12": "european learning mobility",
|
25 |
+
"13": "research and innovation",
|
26 |
+
"14": "participation and engagement",
|
27 |
+
"15": "democratic values"
|
28 |
+
},
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"label2id": {
|
31 |
+
"climate change": 4,
|
32 |
+
"culture": 1,
|
33 |
+
"democratic values": 15,
|
34 |
+
"digital": 2,
|
35 |
+
"education": 3,
|
36 |
+
"employment and inclusion": 11,
|
37 |
+
"european learning mobility": 12,
|
38 |
+
"health and well-being": 10,
|
39 |
+
"n/a": 0,
|
40 |
+
"natural sustainability": 9,
|
41 |
+
"participation and engagement": 14,
|
42 |
+
"policy dialogues": 7,
|
43 |
+
"renewable energy": 6,
|
44 |
+
"research and innovation": 13,
|
45 |
+
"studying abroad": 5,
|
46 |
+
"youth and the world": 8
|
47 |
+
},
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "distilbert",
|
50 |
+
"n_heads": 12,
|
51 |
+
"n_layers": 6,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"qa_dropout": 0.1,
|
54 |
+
"seq_classif_dropout": 0.2,
|
55 |
+
"sinusoidal_pos_embds": false,
|
56 |
+
"tie_weights_": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"vocab_size": 30522
|
60 |
+
}
|
checkpoint-1500/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7cf9ff84191522e5447829f04efe728f66572742b0fbd31f920b14c2b4240ca7
|
3 |
+
size 535786209
|
checkpoint-1500/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:86887fa801e6f8bbcbc4bdcf40345737b21c9c3e79ae79ef3b3dfaf0fc821c07
|
3 |
+
size 267903601
|
checkpoint-1500/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b70d16f31c6acc0b13971f0b78e9dcd0d5ed1f43dd68df23c7161ddf1d06f86
|
3 |
+
size 14503
|
checkpoint-1500/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0448fa8959e682269aceffad7c77d85f2d35fb1b603085f58ee828052f2267a5
|
3 |
+
size 623
|
checkpoint-1500/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
checkpoint-1500/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-1500/tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
|
checkpoint-1500/trainer_state.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.4,
|
5 |
+
"global_step": 1500,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.13,
|
12 |
+
"learning_rate": 4.3333333333333334e-05,
|
13 |
+
"loss": 2.5673,
|
14 |
+
"step": 500
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.27,
|
18 |
+
"learning_rate": 3.6666666666666666e-05,
|
19 |
+
"loss": 2.5378,
|
20 |
+
"step": 1000
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.4,
|
24 |
+
"learning_rate": 3e-05,
|
25 |
+
"loss": 2.5315,
|
26 |
+
"step": 1500
|
27 |
+
}
|
28 |
+
],
|
29 |
+
"max_steps": 3750,
|
30 |
+
"num_train_epochs": 1,
|
31 |
+
"total_flos": 1452685485225984.0,
|
32 |
+
"trial_name": null,
|
33 |
+
"trial_params": null
|
34 |
+
}
|
checkpoint-1500/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:736ff2f74ff7a20eb7c6ec947c546081d7c85fdea93f26ed28c58421d13dcae5
|
3 |
+
size 2991
|
checkpoint-1500/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-2000/config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "n/a",
|
13 |
+
"1": "culture",
|
14 |
+
"2": "digital",
|
15 |
+
"3": "education",
|
16 |
+
"4": "climate change",
|
17 |
+
"5": "studying abroad",
|
18 |
+
"6": "renewable energy",
|
19 |
+
"7": "policy dialogues",
|
20 |
+
"8": "youth and the world",
|
21 |
+
"9": "natural sustainability",
|
22 |
+
"10": "health and well-being",
|
23 |
+
"11": "employment and inclusion",
|
24 |
+
"12": "european learning mobility",
|
25 |
+
"13": "research and innovation",
|
26 |
+
"14": "participation and engagement",
|
27 |
+
"15": "democratic values"
|
28 |
+
},
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"label2id": {
|
31 |
+
"climate change": 4,
|
32 |
+
"culture": 1,
|
33 |
+
"democratic values": 15,
|
34 |
+
"digital": 2,
|
35 |
+
"education": 3,
|
36 |
+
"employment and inclusion": 11,
|
37 |
+
"european learning mobility": 12,
|
38 |
+
"health and well-being": 10,
|
39 |
+
"n/a": 0,
|
40 |
+
"natural sustainability": 9,
|
41 |
+
"participation and engagement": 14,
|
42 |
+
"policy dialogues": 7,
|
43 |
+
"renewable energy": 6,
|
44 |
+
"research and innovation": 13,
|
45 |
+
"studying abroad": 5,
|
46 |
+
"youth and the world": 8
|
47 |
+
},
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "distilbert",
|
50 |
+
"n_heads": 12,
|
51 |
+
"n_layers": 6,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"qa_dropout": 0.1,
|
54 |
+
"seq_classif_dropout": 0.2,
|
55 |
+
"sinusoidal_pos_embds": false,
|
56 |
+
"tie_weights_": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"vocab_size": 30522
|
60 |
+
}
|
checkpoint-2000/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31623721cc8bfd2cbbf9f3631e42cdfae122c81dad46017f093eedf315b7c201
|
3 |
+
size 535786209
|
checkpoint-2000/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f97510d4dad94469742d76b789f17dcdb5569aea7896c23f7c7900e663afe79a
|
3 |
+
size 267903601
|
checkpoint-2000/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d42da5f1df304e6b0252701fceaa84057bc75e55946f88656b60745112313184
|
3 |
+
size 14503
|
checkpoint-2000/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb3e3e15e91c6931f61158f085bbf18d801bf4aa96563c336e19563a458f23ff
|
3 |
+
size 623
|
checkpoint-2000/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
checkpoint-2000/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-2000/tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
|
checkpoint-2000/trainer_state.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.5333333333333333,
|
5 |
+
"global_step": 2000,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.13,
|
12 |
+
"learning_rate": 4.3333333333333334e-05,
|
13 |
+
"loss": 2.5673,
|
14 |
+
"step": 500
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.27,
|
18 |
+
"learning_rate": 3.6666666666666666e-05,
|
19 |
+
"loss": 2.5378,
|
20 |
+
"step": 1000
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.4,
|
24 |
+
"learning_rate": 3e-05,
|
25 |
+
"loss": 2.5315,
|
26 |
+
"step": 1500
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 0.53,
|
30 |
+
"learning_rate": 2.3333333333333336e-05,
|
31 |
+
"loss": 2.5265,
|
32 |
+
"step": 2000
|
33 |
+
}
|
34 |
+
],
|
35 |
+
"max_steps": 3750,
|
36 |
+
"num_train_epochs": 1,
|
37 |
+
"total_flos": 1923161535498240.0,
|
38 |
+
"trial_name": null,
|
39 |
+
"trial_params": null
|
40 |
+
}
|
checkpoint-2000/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:736ff2f74ff7a20eb7c6ec947c546081d7c85fdea93f26ed28c58421d13dcae5
|
3 |
+
size 2991
|
checkpoint-2000/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-2500/config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "n/a",
|
13 |
+
"1": "culture",
|
14 |
+
"2": "digital",
|
15 |
+
"3": "education",
|
16 |
+
"4": "climate change",
|
17 |
+
"5": "studying abroad",
|
18 |
+
"6": "renewable energy",
|
19 |
+
"7": "policy dialogues",
|
20 |
+
"8": "youth and the world",
|
21 |
+
"9": "natural sustainability",
|
22 |
+
"10": "health and well-being",
|
23 |
+
"11": "employment and inclusion",
|
24 |
+
"12": "european learning mobility",
|
25 |
+
"13": "research and innovation",
|
26 |
+
"14": "participation and engagement",
|
27 |
+
"15": "democratic values"
|
28 |
+
},
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"label2id": {
|
31 |
+
"climate change": 4,
|
32 |
+
"culture": 1,
|
33 |
+
"democratic values": 15,
|
34 |
+
"digital": 2,
|
35 |
+
"education": 3,
|
36 |
+
"employment and inclusion": 11,
|
37 |
+
"european learning mobility": 12,
|
38 |
+
"health and well-being": 10,
|
39 |
+
"n/a": 0,
|
40 |
+
"natural sustainability": 9,
|
41 |
+
"participation and engagement": 14,
|
42 |
+
"policy dialogues": 7,
|
43 |
+
"renewable energy": 6,
|
44 |
+
"research and innovation": 13,
|
45 |
+
"studying abroad": 5,
|
46 |
+
"youth and the world": 8
|
47 |
+
},
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "distilbert",
|
50 |
+
"n_heads": 12,
|
51 |
+
"n_layers": 6,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"qa_dropout": 0.1,
|
54 |
+
"seq_classif_dropout": 0.2,
|
55 |
+
"sinusoidal_pos_embds": false,
|
56 |
+
"tie_weights_": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"vocab_size": 30522
|
60 |
+
}
|
checkpoint-2500/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0cccc2dd35edd0d24e9bc1633032b67ca22ee0ff312c22752395536cdb1d533b
|
3 |
+
size 535786209
|
checkpoint-2500/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9182236caba870a2901ac06fd4043653389423ae2bc0ee4f9a587fb4b9cd7d91
|
3 |
+
size 267903601
|
checkpoint-2500/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2952355ad4e46086847dab0a7b91185afd1f274ad431221d3a5448e29d558b0c
|
3 |
+
size 14503
|
checkpoint-2500/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4c13494368e217239013918c949ddcfa2b6fbb317a7b57308ea9ba0e0c5dfb4
|
3 |
+
size 623
|
checkpoint-2500/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
checkpoint-2500/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-2500/tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
|
checkpoint-2500/trainer_state.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.6666666666666666,
|
5 |
+
"global_step": 2500,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.13,
|
12 |
+
"learning_rate": 4.3333333333333334e-05,
|
13 |
+
"loss": 2.5673,
|
14 |
+
"step": 500
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.27,
|
18 |
+
"learning_rate": 3.6666666666666666e-05,
|
19 |
+
"loss": 2.5378,
|
20 |
+
"step": 1000
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.4,
|
24 |
+
"learning_rate": 3e-05,
|
25 |
+
"loss": 2.5315,
|
26 |
+
"step": 1500
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 0.53,
|
30 |
+
"learning_rate": 2.3333333333333336e-05,
|
31 |
+
"loss": 2.5265,
|
32 |
+
"step": 2000
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"epoch": 0.67,
|
36 |
+
"learning_rate": 1.6666666666666667e-05,
|
37 |
+
"loss": 2.5269,
|
38 |
+
"step": 2500
|
39 |
+
}
|
40 |
+
],
|
41 |
+
"max_steps": 3750,
|
42 |
+
"num_train_epochs": 1,
|
43 |
+
"total_flos": 2386813811472384.0,
|
44 |
+
"trial_name": null,
|
45 |
+
"trial_params": null
|
46 |
+
}
|
checkpoint-2500/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:736ff2f74ff7a20eb7c6ec947c546081d7c85fdea93f26ed28c58421d13dcae5
|
3 |
+
size 2991
|
checkpoint-2500/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-3000/config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "n/a",
|
13 |
+
"1": "culture",
|
14 |
+
"2": "digital",
|
15 |
+
"3": "education",
|
16 |
+
"4": "climate change",
|
17 |
+
"5": "studying abroad",
|
18 |
+
"6": "renewable energy",
|
19 |
+
"7": "policy dialogues",
|
20 |
+
"8": "youth and the world",
|
21 |
+
"9": "natural sustainability",
|
22 |
+
"10": "health and well-being",
|
23 |
+
"11": "employment and inclusion",
|
24 |
+
"12": "european learning mobility",
|
25 |
+
"13": "research and innovation",
|
26 |
+
"14": "participation and engagement",
|
27 |
+
"15": "democratic values"
|
28 |
+
},
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"label2id": {
|
31 |
+
"climate change": 4,
|
32 |
+
"culture": 1,
|
33 |
+
"democratic values": 15,
|
34 |
+
"digital": 2,
|
35 |
+
"education": 3,
|
36 |
+
"employment and inclusion": 11,
|
37 |
+
"european learning mobility": 12,
|
38 |
+
"health and well-being": 10,
|
39 |
+
"n/a": 0,
|
40 |
+
"natural sustainability": 9,
|
41 |
+
"participation and engagement": 14,
|
42 |
+
"policy dialogues": 7,
|
43 |
+
"renewable energy": 6,
|
44 |
+
"research and innovation": 13,
|
45 |
+
"studying abroad": 5,
|
46 |
+
"youth and the world": 8
|
47 |
+
},
|
48 |
+
"max_position_embeddings": 512,
|
49 |
+
"model_type": "distilbert",
|
50 |
+
"n_heads": 12,
|
51 |
+
"n_layers": 6,
|
52 |
+
"pad_token_id": 0,
|
53 |
+
"qa_dropout": 0.1,
|
54 |
+
"seq_classif_dropout": 0.2,
|
55 |
+
"sinusoidal_pos_embds": false,
|
56 |
+
"tie_weights_": true,
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"vocab_size": 30522
|
60 |
+
}
|
checkpoint-3000/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2c8032f999df864817e56fe4bab139638b878a80304bb5c19e1b7eeb4da6ad2
|
3 |
+
size 535786209
|
checkpoint-3000/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:45b43d136cfce462f5ea5ee146914db119ea04cb7eb5a8109d9f7ace9e78184c
|
3 |
+
size 267903601
|
checkpoint-3000/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e823145ceff848d3304a03dbfda599b201f8c385e9c3bd781564b37210ac22e
|
3 |
+
size 14503
|
checkpoint-3000/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41625199ddc3548f3fb8e3d4a786a1e52abf1e78aa1125676a9cb9dff1785538
|
3 |
+
size 623
|
checkpoint-3000/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|