Training in progress, epoch 1
Browse files- config.json +4 -14
- logs/events.out.tfevents.1715757548.spartan-gpgpu093.hpc.unimelb.edu.au +3 -0
- model.safetensors +3 -0
- tokenizer.json +16 -2
- tokenizer_config.json +42 -0
- training_args.bin +2 -2
config.json
CHANGED
@@ -1,15 +1,11 @@
|
|
1 |
{
|
2 |
-
"activation": "gelu",
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
6 |
-
"attention_dropout": 0.1,
|
7 |
"attention_probs_dropout_prob": 0.1,
|
8 |
"classifier_dropout": null,
|
9 |
-
"
|
10 |
-
"dropout": 0.1,
|
11 |
"hidden_act": "gelu",
|
12 |
-
"hidden_dim": 3072,
|
13 |
"hidden_dropout_prob": 0.1,
|
14 |
"hidden_size": 512,
|
15 |
"initializer_range": 0.02,
|
@@ -17,19 +13,13 @@
|
|
17 |
"layer_norm_eps": 1e-12,
|
18 |
"max_position_embeddings": 512,
|
19 |
"model_type": "bert",
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"num_attention_heads": 4,
|
23 |
-
"num_hidden_layers": 4,
|
24 |
"pad_token_id": 0,
|
25 |
"position_embedding_type": "absolute",
|
26 |
"problem_type": "single_label_classification",
|
27 |
-
"qa_dropout": 0.1,
|
28 |
-
"seq_classif_dropout": 0.2,
|
29 |
-
"sinusoidal_pos_embds": false,
|
30 |
-
"tie_weights_": true,
|
31 |
"torch_dtype": "float32",
|
32 |
-
"transformers_version": "4.
|
33 |
"type_vocab_size": 2,
|
34 |
"use_cache": true,
|
35 |
"vocab_size": 30522
|
|
|
1 |
{
|
|
|
2 |
"architectures": [
|
3 |
"BertForSequenceClassification"
|
4 |
],
|
|
|
5 |
"attention_probs_dropout_prob": 0.1,
|
6 |
"classifier_dropout": null,
|
7 |
+
"gradient_checkpointing": false,
|
|
|
8 |
"hidden_act": "gelu",
|
|
|
9 |
"hidden_dropout_prob": 0.1,
|
10 |
"hidden_size": 512,
|
11 |
"initializer_range": 0.02,
|
|
|
13 |
"layer_norm_eps": 1e-12,
|
14 |
"max_position_embeddings": 512,
|
15 |
"model_type": "bert",
|
16 |
+
"num_attention_heads": 8,
|
17 |
+
"num_hidden_layers": 8,
|
|
|
|
|
18 |
"pad_token_id": 0,
|
19 |
"position_embedding_type": "absolute",
|
20 |
"problem_type": "single_label_classification",
|
|
|
|
|
|
|
|
|
21 |
"torch_dtype": "float32",
|
22 |
+
"transformers_version": "4.39.0",
|
23 |
"type_vocab_size": 2,
|
24 |
"use_cache": true,
|
25 |
"vocab_size": 30522
|
logs/events.out.tfevents.1715757548.spartan-gpgpu093.hpc.unimelb.edu.au
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5d86812ef45468de74120c3e15acbd7f3e5c7eab4cca8e6d70a08c9a45801902
|
3 |
+
size 5064
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a39f32b3dc7675f03c19051526bdad2f94960e59606b8b5c9aafe0f2716c9b52
|
3 |
+
size 199099944
|
tokenizer.json
CHANGED
@@ -1,7 +1,21 @@
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
-
"truncation":
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
"added_tokens": [
|
6 |
{
|
7 |
"id": 0,
|
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
+
"truncation": {
|
4 |
+
"direction": "Right",
|
5 |
+
"max_length": 512,
|
6 |
+
"strategy": "LongestFirst",
|
7 |
+
"stride": 0
|
8 |
+
},
|
9 |
+
"padding": {
|
10 |
+
"strategy": {
|
11 |
+
"Fixed": 512
|
12 |
+
},
|
13 |
+
"direction": "Right",
|
14 |
+
"pad_to_multiple_of": null,
|
15 |
+
"pad_id": 0,
|
16 |
+
"pad_type_id": 0,
|
17 |
+
"pad_token": "[PAD]"
|
18 |
+
},
|
19 |
"added_tokens": [
|
20 |
{
|
21 |
"id": 0,
|
tokenizer_config.json
CHANGED
@@ -1,4 +1,46 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"clean_up_tokenization_spaces": true,
|
3 |
"cls_token": "[CLS]",
|
4 |
"do_lower_case": true,
|
|
|
1 |
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"100": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"101": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"102": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"103": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
"clean_up_tokenization_spaces": true,
|
45 |
"cls_token": "[CLS]",
|
46 |
"do_lower_case": true,
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d55612314a7be6f9a922d1731809e4ce24f8e9d9d1c251219b2d4c9ec6c92b03
|
3 |
+
size 4984
|