Training in progress, epoch 1
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- config.json +62 -0
- pytorch_model.bin +3 -0
- runs/Mar15_23-19-47_de0f707cbd33/1647386418.5734468/events.out.tfevents.1647386418.de0f707cbd33.73.3 +3 -0
- runs/Mar15_23-19-47_de0f707cbd33/events.out.tfevents.1647386418.de0f707cbd33.73.2 +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +3 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -25,3 +25,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "xlm-roberta-base",
|
3 |
+
"architectures": [
|
4 |
+
"XLMRobertaForTokenClassification"
|
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": "B-BUYPRICE",
|
15 |
+
"1": "B-CALLTYPE",
|
16 |
+
"10": "I-INSTRUMENT",
|
17 |
+
"11": "I-STOPLOSS",
|
18 |
+
"12": "I-SUGGESTIONTYPE",
|
19 |
+
"13": "I-TARGET",
|
20 |
+
"14": "O",
|
21 |
+
"2": "B-HOLDINGPERIOD",
|
22 |
+
"3": "B-INSTRUMENT",
|
23 |
+
"4": "B-STOPLOSS",
|
24 |
+
"5": "B-SUGGESTIONTYPE",
|
25 |
+
"6": "B-TARGET",
|
26 |
+
"7": "I-BUYPRICE",
|
27 |
+
"8": "I-CALLTYPE",
|
28 |
+
"9": "I-HOLDINGPERIOD"
|
29 |
+
},
|
30 |
+
"initializer_range": 0.02,
|
31 |
+
"intermediate_size": 3072,
|
32 |
+
"label2id": {
|
33 |
+
"B-BUYPRICE": "0",
|
34 |
+
"B-CALLTYPE": "1",
|
35 |
+
"B-HOLDINGPERIOD": "2",
|
36 |
+
"B-INSTRUMENT": "3",
|
37 |
+
"B-STOPLOSS": "4",
|
38 |
+
"B-SUGGESTIONTYPE": "5",
|
39 |
+
"B-TARGET": "6",
|
40 |
+
"I-BUYPRICE": "7",
|
41 |
+
"I-CALLTYPE": "8",
|
42 |
+
"I-HOLDINGPERIOD": "9",
|
43 |
+
"I-INSTRUMENT": "10",
|
44 |
+
"I-STOPLOSS": "11",
|
45 |
+
"I-SUGGESTIONTYPE": "12",
|
46 |
+
"I-TARGET": "13",
|
47 |
+
"O": "14"
|
48 |
+
},
|
49 |
+
"layer_norm_eps": 1e-05,
|
50 |
+
"max_position_embeddings": 514,
|
51 |
+
"model_type": "xlm-roberta",
|
52 |
+
"num_attention_heads": 12,
|
53 |
+
"num_hidden_layers": 12,
|
54 |
+
"output_past": true,
|
55 |
+
"pad_token_id": 1,
|
56 |
+
"position_embedding_type": "absolute",
|
57 |
+
"torch_dtype": "float32",
|
58 |
+
"transformers_version": "4.17.0",
|
59 |
+
"type_vocab_size": 1,
|
60 |
+
"use_cache": true,
|
61 |
+
"vocab_size": 250002
|
62 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c697cd775e5c26068f256f146765d9c65201e0743cf873a651aa733d4a585286
|
3 |
+
size 1109943985
|
runs/Mar15_23-19-47_de0f707cbd33/1647386418.5734468/events.out.tfevents.1647386418.de0f707cbd33.73.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0f133beb003016caef5063944462c27ccbb8e0dccb6e7de8e6a9ca9243c160f
|
3 |
+
size 4772
|
runs/Mar15_23-19-47_de0f707cbd33/events.out.tfevents.1647386418.de0f707cbd33.73.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e194f264f08f40e4b16e7fec161c070f8ba139ac2387ed743011a17a859e83fe
|
3 |
+
size 4585
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "sep_token": "</s>", "pad_token": "<pad>", "cls_token": "<s>", "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": false}}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2c509a525eb51aebb33fb59c24ee923c1d4c1db23c3ae81fe05ccf354084f7b
|
3 |
+
size 17082758
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "sep_token": "</s>", "cls_token": "<s>", "unk_token": "<unk>", "pad_token": "<pad>", "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "xlm-roberta-base", "tokenizer_class": "XLMRobertaTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93b7c0d295f0ae3cde7cc989202e330b683483f2eb1d5655f7fb0e3040dd88d4
|
3 |
+
size 2991
|