dontgive99 commited on
Commit
9fd692a
1 Parent(s): 909ea4e

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "klue/roberta-small",
3
+ "architectures": [
4
+ "RobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "gradient_checkpointing": false,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 768,
14
+ "id2label": {
15
+ "0": "O",
16
+ "1": "B-ORG",
17
+ "2": "I-ORG",
18
+ "3": "B-PIVOT_TIME",
19
+ "4": "I-PIVOT_TIME",
20
+ "5": "B-PER",
21
+ "6": "I-PER",
22
+ "7": "B-REPUR",
23
+ "8": "I-REPUR",
24
+ "9": "B-PAYMENT",
25
+ "10": "I-PAYMENT",
26
+ "11": "B-REINVEST",
27
+ "12": "I-REINVEST",
28
+ "13": "B-EVAL",
29
+ "14": "I-EVAL",
30
+ "15": "B-PIVOT_PRICE",
31
+ "16": "I-PIVOT_PRICE",
32
+ "17": "B-ACT_PERIOD",
33
+ "18": "I-ACT_PERIOD",
34
+ "19": "B-PAY_PERIOD",
35
+ "20": "I-PAY_PERIOD",
36
+ "21": "B-BS_DAY",
37
+ "22": "I-BS_DAY",
38
+ "23": "B-FUND_NUM",
39
+ "24": "I-FUND_NUM",
40
+ "25": "B-FUND_CODE",
41
+ "26": "I-FUND_CODE"
42
+ },
43
+ "initializer_range": 0.02,
44
+ "intermediate_size": 3072,
45
+ "label2id": {
46
+ "B-ACT_PERIOD": 17,
47
+ "B-BS_DAY": 21,
48
+ "B-EVAL": 13,
49
+ "B-FUND_CODE": 25,
50
+ "B-FUND_NUM": 23,
51
+ "B-ORG": 1,
52
+ "B-PAYMENT": 9,
53
+ "B-PAY_PERIOD": 19,
54
+ "B-PER": 5,
55
+ "B-PIVOT_PRICE": 15,
56
+ "B-PIVOT_TIME": 3,
57
+ "B-REINVEST": 11,
58
+ "B-REPUR": 7,
59
+ "I-ACT_PERIOD": 18,
60
+ "I-BS_DAY": 22,
61
+ "I-EVAL": 14,
62
+ "I-FUND_CODE": 26,
63
+ "I-FUND_NUM": 24,
64
+ "I-ORG": 2,
65
+ "I-PAYMENT": 10,
66
+ "I-PAY_PERIOD": 20,
67
+ "I-PER": 6,
68
+ "I-PIVOT_PRICE": 16,
69
+ "I-PIVOT_TIME": 4,
70
+ "I-REINVEST": 12,
71
+ "I-REPUR": 8,
72
+ "O": 0
73
+ },
74
+ "layer_norm_eps": 1e-05,
75
+ "max_position_embeddings": 514,
76
+ "model_type": "roberta",
77
+ "num_attention_heads": 12,
78
+ "num_hidden_layers": 6,
79
+ "pad_token_id": 1,
80
+ "position_embedding_type": "absolute",
81
+ "tokenizer_class": "BertTokenizer",
82
+ "torch_dtype": "float32",
83
+ "transformers_version": "4.30.2",
84
+ "type_vocab_size": 1,
85
+ "use_cache": true,
86
+ "vocab_size": 32000
87
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79abe570cba8aebd9484002b9814391cd2e176fbfddc1cbd23d7796a920a1c12
3
+ size 270123693
runs/Jul27_04-41-55_b61e33cae3f9/events.out.tfevents.1690432933.b61e33cae3f9.3686.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ee7a5be0978144718f815fca79b6b1d0da6c8ab24170157313677604bad6505
3
+ size 5813
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
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "do_basic_tokenize": true,
6
+ "do_lower_case": false,
7
+ "eos_token": "[SEP]",
8
+ "mask_token": "[MASK]",
9
+ "model_max_length": 512,
10
+ "never_split": null,
11
+ "pad_token": "[PAD]",
12
+ "sep_token": "[SEP]",
13
+ "strip_accents": null,
14
+ "tokenize_chinese_chars": true,
15
+ "tokenizer_class": "BertTokenizer",
16
+ "unk_token": "[UNK]"
17
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dce1a804a4ee58a9b2e559005249afec6551103c5b27b8cc28474bb67a074ef9
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff