Shunian Chen
commited on
Commit
·
438dc1e
1
Parent(s):
5f05084
Training in progress, step 5000
Browse files- .gitignore +1 -0
- config.json +64 -0
- pytorch_model.bin +3 -0
- runs/1671139523.7402716/events.out.tfevents.1671139523.codespaces-ea93af +3 -0
- runs/1671139938.5672846/events.out.tfevents.1671139938.codespaces-ea93af.989.1 +3 -0
- runs/1671139986.45997/events.out.tfevents.1671139986.codespaces-ea93af.1643.1 +3 -0
- runs/events.out.tfevents.1671139523.codespaces-ea93af +3 -0
- runs/events.out.tfevents.1671139938.codespaces-ea93af.989.0 +3 -0
- runs/events.out.tfevents.1671139986.codespaces-ea93af.1643.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "roberta-base",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"RobertaForSequenceClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"hidden_act": "gelu",
|
| 11 |
+
"hidden_dropout_prob": 0.1,
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"id2label": {
|
| 14 |
+
"0": "LABEL_0",
|
| 15 |
+
"1": "LABEL_1",
|
| 16 |
+
"2": "LABEL_2",
|
| 17 |
+
"3": "LABEL_3",
|
| 18 |
+
"4": "LABEL_4",
|
| 19 |
+
"5": "LABEL_5",
|
| 20 |
+
"6": "LABEL_6",
|
| 21 |
+
"7": "LABEL_7",
|
| 22 |
+
"8": "LABEL_8",
|
| 23 |
+
"9": "LABEL_9",
|
| 24 |
+
"10": "LABEL_10",
|
| 25 |
+
"11": "LABEL_11",
|
| 26 |
+
"12": "LABEL_12",
|
| 27 |
+
"13": "LABEL_13",
|
| 28 |
+
"14": "LABEL_14",
|
| 29 |
+
"15": "LABEL_15"
|
| 30 |
+
},
|
| 31 |
+
"initializer_range": 0.02,
|
| 32 |
+
"intermediate_size": 3072,
|
| 33 |
+
"label2id": {
|
| 34 |
+
"LABEL_0": 0,
|
| 35 |
+
"LABEL_1": 1,
|
| 36 |
+
"LABEL_10": 10,
|
| 37 |
+
"LABEL_11": 11,
|
| 38 |
+
"LABEL_12": 12,
|
| 39 |
+
"LABEL_13": 13,
|
| 40 |
+
"LABEL_14": 14,
|
| 41 |
+
"LABEL_15": 15,
|
| 42 |
+
"LABEL_2": 2,
|
| 43 |
+
"LABEL_3": 3,
|
| 44 |
+
"LABEL_4": 4,
|
| 45 |
+
"LABEL_5": 5,
|
| 46 |
+
"LABEL_6": 6,
|
| 47 |
+
"LABEL_7": 7,
|
| 48 |
+
"LABEL_8": 8,
|
| 49 |
+
"LABEL_9": 9
|
| 50 |
+
},
|
| 51 |
+
"layer_norm_eps": 1e-05,
|
| 52 |
+
"max_position_embeddings": 514,
|
| 53 |
+
"model_type": "roberta",
|
| 54 |
+
"num_attention_heads": 12,
|
| 55 |
+
"num_hidden_layers": 12,
|
| 56 |
+
"pad_token_id": 1,
|
| 57 |
+
"position_embedding_type": "absolute",
|
| 58 |
+
"problem_type": "single_label_classification",
|
| 59 |
+
"torch_dtype": "float32",
|
| 60 |
+
"transformers_version": "4.25.1",
|
| 61 |
+
"type_vocab_size": 1,
|
| 62 |
+
"use_cache": true,
|
| 63 |
+
"vocab_size": 50265
|
| 64 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a262300c8257219192c6a94ec9a41ea7230b956dad0ec1c3330d4ee522cf9d8
|
| 3 |
+
size 498703405
|
runs/1671139523.7402716/events.out.tfevents.1671139523.codespaces-ea93af
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12f1090922adf499469d53de22f6346a1bdf73dc490444f80e3523b0d3910239
|
| 3 |
+
size 5415
|
runs/1671139938.5672846/events.out.tfevents.1671139938.codespaces-ea93af.989.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da4c192b4ad2e929fd94c4a0689924c15a1e4f75341950edb8690aaea4701bb5
|
| 3 |
+
size 5653
|
runs/1671139986.45997/events.out.tfevents.1671139986.codespaces-ea93af.1643.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9170782e185ae7700c26ba88a661e37f37dbea6f37ccb71f896cbd8ba528ee14
|
| 3 |
+
size 5653
|
runs/events.out.tfevents.1671139523.codespaces-ea93af
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90396e4d5a061a6545d80c4416d5e4e125747694f2be20a2c22a4cf5b043e5eb
|
| 3 |
+
size 5635
|
runs/events.out.tfevents.1671139938.codespaces-ea93af.989.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fdaa4e954572312612419ff60e239025cc19f3f4a6eba5344dba8c9888149b51
|
| 3 |
+
size 4850
|
runs/events.out.tfevents.1671139986.codespaces-ea93af.1643.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfeff7ddfb71d2ccdb4d16efeec09eee887aa20f7ea5f1a00bfcda33659d1676
|
| 3 |
+
size 12543
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45037496488ad8c177311652ebbef8cd5f1c0b9e32481f15b87c17f35900e1c9
|
| 3 |
+
size 3503
|