Commit ·
d4bde7f
1
Parent(s): 2016c80
Training in progress, step 1000
Browse files- .gitignore +1 -0
- added_tokens.json +3 -0
- config.json +59 -0
- pytorch_model.bin +3 -0
- runs/Sep17_15-51-20_51ee0c8a89b2/1694965892.4020507/events.out.tfevents.1694965892.51ee0c8a89b2.367.1 +3 -0
- runs/Sep17_15-51-20_51ee0c8a89b2/events.out.tfevents.1694965892.51ee0c8a89b2.367.0 +3 -0
- special_tokens_map.json +9 -0
- spm.model +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +16 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"[MASK]": 128000
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "microsoft/deberta-v3-large",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"DebertaV2ForTokenClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"hidden_act": "gelu",
|
| 8 |
+
"hidden_dropout_prob": 0.1,
|
| 9 |
+
"hidden_size": 1024,
|
| 10 |
+
"id2label": {
|
| 11 |
+
"0": "O",
|
| 12 |
+
"1": "art",
|
| 13 |
+
"2": "building",
|
| 14 |
+
"3": "event",
|
| 15 |
+
"4": "location",
|
| 16 |
+
"5": "organization",
|
| 17 |
+
"6": "other",
|
| 18 |
+
"7": "person",
|
| 19 |
+
"8": "product",
|
| 20 |
+
"9": "amount"
|
| 21 |
+
},
|
| 22 |
+
"initializer_range": 0.02,
|
| 23 |
+
"intermediate_size": 4096,
|
| 24 |
+
"label2id": {
|
| 25 |
+
"O": 0,
|
| 26 |
+
"amount": 9,
|
| 27 |
+
"art": 1,
|
| 28 |
+
"building": 2,
|
| 29 |
+
"event": 3,
|
| 30 |
+
"location": 4,
|
| 31 |
+
"organization": 5,
|
| 32 |
+
"other": 6,
|
| 33 |
+
"person": 7,
|
| 34 |
+
"product": 8
|
| 35 |
+
},
|
| 36 |
+
"layer_norm_eps": 1e-07,
|
| 37 |
+
"max_position_embeddings": 512,
|
| 38 |
+
"max_relative_positions": -1,
|
| 39 |
+
"model_type": "deberta-v2",
|
| 40 |
+
"norm_rel_ebd": "layer_norm",
|
| 41 |
+
"num_attention_heads": 16,
|
| 42 |
+
"num_hidden_layers": 24,
|
| 43 |
+
"pad_token_id": 0,
|
| 44 |
+
"pooler_dropout": 0,
|
| 45 |
+
"pooler_hidden_act": "gelu",
|
| 46 |
+
"pooler_hidden_size": 1024,
|
| 47 |
+
"pos_att_type": [
|
| 48 |
+
"p2c",
|
| 49 |
+
"c2p"
|
| 50 |
+
],
|
| 51 |
+
"position_biased_input": false,
|
| 52 |
+
"position_buckets": 256,
|
| 53 |
+
"relative_attention": true,
|
| 54 |
+
"share_att_key": true,
|
| 55 |
+
"torch_dtype": "float32",
|
| 56 |
+
"transformers_version": "4.28.0",
|
| 57 |
+
"type_vocab_size": 0,
|
| 58 |
+
"vocab_size": 128100
|
| 59 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfdf1ee1d4090e9f59efa4b0befe1feee12ae9d58ce66a12192d9ce2ff4c0149
|
| 3 |
+
size 1736230001
|
runs/Sep17_15-51-20_51ee0c8a89b2/1694965892.4020507/events.out.tfevents.1694965892.51ee0c8a89b2.367.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:638af077023d9de25d12d8061280340ea169999fb6007f06a05578575f1ae0d3
|
| 3 |
+
size 5886
|
runs/Sep17_15-51-20_51ee0c8a89b2/events.out.tfevents.1694965892.51ee0c8a89b2.367.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:209399418f7b06d0066f694d5c39d909f9500017bd84df6b758602e76c6f6a7c
|
| 3 |
+
size 5331
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "[CLS]",
|
| 3 |
+
"cls_token": "[CLS]",
|
| 4 |
+
"eos_token": "[SEP]",
|
| 5 |
+
"mask_token": "[MASK]",
|
| 6 |
+
"pad_token": "[PAD]",
|
| 7 |
+
"sep_token": "[SEP]",
|
| 8 |
+
"unk_token": "[UNK]"
|
| 9 |
+
}
|
spm.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
|
| 3 |
+
size 2464616
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "[CLS]",
|
| 3 |
+
"clean_up_tokenization_spaces": true,
|
| 4 |
+
"cls_token": "[CLS]",
|
| 5 |
+
"do_lower_case": false,
|
| 6 |
+
"eos_token": "[SEP]",
|
| 7 |
+
"mask_token": "[MASK]",
|
| 8 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 9 |
+
"pad_token": "[PAD]",
|
| 10 |
+
"sep_token": "[SEP]",
|
| 11 |
+
"sp_model_kwargs": {},
|
| 12 |
+
"split_by_punct": false,
|
| 13 |
+
"tokenizer_class": "DebertaV2Tokenizer",
|
| 14 |
+
"unk_token": "[UNK]",
|
| 15 |
+
"vocab_type": "spm"
|
| 16 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e77c9b257c104d42f935aaa3a07cf41aea838cf925fece53385215110be34ea8
|
| 3 |
+
size 3579
|