Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +34 -0
- pytorch_model.bin +3 -0
- runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838897.671566/events.out.tfevents.1651838897.LAPTOP-KRSHM41K.2760.3 +3 -0
- runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838964.0978813/events.out.tfevents.1651838964.LAPTOP-KRSHM41K.2760.4 +3 -0
- runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838975.226966/events.out.tfevents.1651838975.LAPTOP-KRSHM41K.2760.5 +3 -0
- runs/May06_20-07-54_LAPTOP-KRSHM41K/events.out.tfevents.1651838897.LAPTOP-KRSHM41K.2760.2 +3 -0
- runs/May06_21-30-32_LAPTOP-KRSHM41K/1651843854.2907484/events.out.tfevents.1651843854.LAPTOP-KRSHM41K.2760.7 +3 -0
- runs/May06_21-30-32_LAPTOP-KRSHM41K/events.out.tfevents.1651843854.LAPTOP-KRSHM41K.2760.6 +3 -0
- runs/May06_21-31-06_LAPTOP-KRSHM41K/1651843888.247076/events.out.tfevents.1651843888.LAPTOP-KRSHM41K.2760.9 +3 -0
- runs/May06_21-31-06_LAPTOP-KRSHM41K/events.out.tfevents.1651843888.LAPTOP-KRSHM41K.2760.8 +3 -0
- runs/May06_21-31-38_LAPTOP-KRSHM41K/1651843920.1295893/events.out.tfevents.1651843920.LAPTOP-KRSHM41K.2760.11 +3 -0
- runs/May06_21-31-38_LAPTOP-KRSHM41K/events.out.tfevents.1651843920.LAPTOP-KRSHM41K.2760.10 +3 -0
- runs/May06_22-04-15_LAPTOP-KRSHM41K/1651845872.5237985/events.out.tfevents.1651845872.LAPTOP-KRSHM41K.42344.1 +3 -0
- runs/May06_22-04-15_LAPTOP-KRSHM41K/events.out.tfevents.1651845872.LAPTOP-KRSHM41K.42344.0 +3 -0
- runs/May06_22-23-34_LAPTOP-KRSHM41K/1651847052.199496/events.out.tfevents.1651847052.LAPTOP-KRSHM41K.42344.3 +3 -0
- runs/May06_22-23-34_LAPTOP-KRSHM41K/events.out.tfevents.1651847052.LAPTOP-KRSHM41K.42344.2 +3 -0
- runs/May06_22-58-40_LAPTOP-KRSHM41K/1651849142.9849453/events.out.tfevents.1651849142.LAPTOP-KRSHM41K.15568.1 +3 -0
- runs/May06_22-58-40_LAPTOP-KRSHM41K/events.out.tfevents.1651849142.LAPTOP-KRSHM41K.15568.0 +3 -0
- runs/May06_23-15-48_LAPTOP-KRSHM41K/1651850186.9356847/events.out.tfevents.1651850186.LAPTOP-KRSHM41K.19604.1 +3 -0
- runs/May06_23-15-48_LAPTOP-KRSHM41K/events.out.tfevents.1651850186.LAPTOP-KRSHM41K.19604.0 +3 -0
- special_tokens_map.json +1 -0
- spiece.model +3 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "D:\\codes\\codes_git\\Paper\\social_preference\\models\\albert\\albert-base-v2",
|
3 |
+
"architectures": [
|
4 |
+
"AlbertForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0,
|
7 |
+
"bos_token_id": 2,
|
8 |
+
"classifier_dropout_prob": 0.1,
|
9 |
+
"down_scale_factor": 1,
|
10 |
+
"embedding_size": 128,
|
11 |
+
"eos_token_id": 3,
|
12 |
+
"gap_size": 0,
|
13 |
+
"hidden_act": "gelu_new",
|
14 |
+
"hidden_dropout_prob": 0,
|
15 |
+
"hidden_size": 768,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"inner_group_num": 1,
|
18 |
+
"intermediate_size": 3072,
|
19 |
+
"layer_norm_eps": 1e-12,
|
20 |
+
"max_position_embeddings": 512,
|
21 |
+
"model_type": "albert",
|
22 |
+
"net_structure_type": 0,
|
23 |
+
"num_attention_heads": 12,
|
24 |
+
"num_hidden_groups": 1,
|
25 |
+
"num_hidden_layers": 12,
|
26 |
+
"num_memory_blocks": 0,
|
27 |
+
"pad_token_id": 0,
|
28 |
+
"position_embedding_type": "absolute",
|
29 |
+
"problem_type": "single_label_classification",
|
30 |
+
"torch_dtype": "float32",
|
31 |
+
"transformers_version": "4.18.0",
|
32 |
+
"type_vocab_size": 2,
|
33 |
+
"vocab_size": 30000
|
34 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2a05bae23e458ddc439c7d5bc07fef15af11d45fce8c1ba0368663191a7490be
|
3 |
+
size 46753425
|
runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838897.671566/events.out.tfevents.1651838897.LAPTOP-KRSHM41K.2760.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5a1b4bb9523a14796daf7cf7fc29deef531609282a660a784234c9ed3fb09b5f
|
3 |
+
size 4837
|
runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838964.0978813/events.out.tfevents.1651838964.LAPTOP-KRSHM41K.2760.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:918542cf6ca748e73086674cb525a8d661700adc700daf9b79160307b185c7f2
|
3 |
+
size 4837
|
runs/May06_20-07-54_LAPTOP-KRSHM41K/1651838975.226966/events.out.tfevents.1651838975.LAPTOP-KRSHM41K.2760.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:abb1e56cf89653a7888a3692b20193f4fff4b28f28367b7c88b59986d1aee4ac
|
3 |
+
size 4837
|
runs/May06_20-07-54_LAPTOP-KRSHM41K/events.out.tfevents.1651838897.LAPTOP-KRSHM41K.2760.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8cca82132b5cf0d2abe87475109e81d41df49d72569d9ac1860a76d9e5baf381
|
3 |
+
size 10408
|
runs/May06_21-30-32_LAPTOP-KRSHM41K/1651843854.2907484/events.out.tfevents.1651843854.LAPTOP-KRSHM41K.2760.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:531a57061031990a470be4d35ea87ee8bd791a3d650934c20f948628a2dfeb46
|
3 |
+
size 4837
|
runs/May06_21-30-32_LAPTOP-KRSHM41K/events.out.tfevents.1651843854.LAPTOP-KRSHM41K.2760.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48201484eda728e51ca6de3a0de90808c94a9a33f241835bfe9807c4435a524f
|
3 |
+
size 3560
|
runs/May06_21-31-06_LAPTOP-KRSHM41K/1651843888.247076/events.out.tfevents.1651843888.LAPTOP-KRSHM41K.2760.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80c4478fe499b449730dcc8d9082806a5556568092bc2575ebac41cb0b7f220e
|
3 |
+
size 4837
|
runs/May06_21-31-06_LAPTOP-KRSHM41K/events.out.tfevents.1651843888.LAPTOP-KRSHM41K.2760.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f44ef33db1a7d0c2468aeeee0d8df338911c2ae6a42701a4c1328ca5b3e538b7
|
3 |
+
size 3558
|
runs/May06_21-31-38_LAPTOP-KRSHM41K/1651843920.1295893/events.out.tfevents.1651843920.LAPTOP-KRSHM41K.2760.11
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:464beea2b0b27ae769f28ebc89aceaa4e32c3c4558fdfb60ba19c23a8d0c3726
|
3 |
+
size 4837
|
runs/May06_21-31-38_LAPTOP-KRSHM41K/events.out.tfevents.1651843920.LAPTOP-KRSHM41K.2760.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fea3971f499cdfaad4ebc8e0d6fa52bc4a74171df4d065e5cea4f0fbb3f3cef6
|
3 |
+
size 3558
|
runs/May06_22-04-15_LAPTOP-KRSHM41K/1651845872.5237985/events.out.tfevents.1651845872.LAPTOP-KRSHM41K.42344.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:755a5cf7d2595367005e700c303ca803cc3867ffb573b83afddcd3085f8a482e
|
3 |
+
size 4837
|
runs/May06_22-04-15_LAPTOP-KRSHM41K/events.out.tfevents.1651845872.LAPTOP-KRSHM41K.42344.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16965a0c4d6b6657c5cf72f91c95e51be240a0d7a45f826c6a892dbb94bc5d6e
|
3 |
+
size 4457
|
runs/May06_22-23-34_LAPTOP-KRSHM41K/1651847052.199496/events.out.tfevents.1651847052.LAPTOP-KRSHM41K.42344.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f280de1991f465b5713a2321f7b99269e9a5649751da49315a229b673ac8671f
|
3 |
+
size 4834
|
runs/May06_22-23-34_LAPTOP-KRSHM41K/events.out.tfevents.1651847052.LAPTOP-KRSHM41K.42344.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ebde5fde41f85cf3571e0252f2c8003e460b0ee21a9a873a269ee6d41828cc7
|
3 |
+
size 3649
|
runs/May06_22-58-40_LAPTOP-KRSHM41K/1651849142.9849453/events.out.tfevents.1651849142.LAPTOP-KRSHM41K.15568.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c5850c2ab9ac03542c7863312dd9ec39d6ff1f38f819303abe83d53ed084e2ca
|
3 |
+
size 4834
|
runs/May06_22-58-40_LAPTOP-KRSHM41K/events.out.tfevents.1651849142.LAPTOP-KRSHM41K.15568.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:281cf2c29261b971442320959a9dbe5a6d4ab4ec38ab23791a3b453f449d5908
|
3 |
+
size 3870
|
runs/May06_23-15-48_LAPTOP-KRSHM41K/1651850186.9356847/events.out.tfevents.1651850186.LAPTOP-KRSHM41K.19604.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc497330c229fc87bf84b62841d8098a7bcd5d472fff1990d6c3df9ade482e8b
|
3 |
+
size 4834
|
runs/May06_23-15-48_LAPTOP-KRSHM41K/events.out.tfevents.1651850186.LAPTOP-KRSHM41K.19604.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d590715d96f235fa3d371258b0660b94b5f5e82eab970176de3afc9ca30af1bf
|
3 |
+
size 3827
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "<unk>", "sep_token": "[SEP]", "pad_token": "<pad>", "cls_token": "[CLS]", "mask_token": {"content": "[MASK]", "single_word": false, "lstrip": true, "rstrip": false, "normalized": false}}
|
spiece.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fefb02b667a6c5c2fe27602d28e5fb3428f66ab89c7d6f388e7c8d44a02d0336
|
3 |
+
size 760289
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "remove_space": true, "keep_accents": false, "bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "<unk>", "sep_token": "[SEP]", "pad_token": "<pad>", "cls_token": "[CLS]", "mask_token": {"content": "[MASK]", "single_word": false, "lstrip": true, "rstrip": false, "normalized": false, "__type": "AddedToken"}, "sp_model_kwargs": {}, "use_fast": true, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "D:\\codes\\codes_git\\Paper\\social_preference\\models\\albert\\albert-base-v2", "tokenizer_class": "AlbertTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8d24bf0d72eea40ace85a48ffc1da20937e6e2a57bf1fc01c7be19cd8b3d5e3
|
3 |
+
size 3055
|