Gladiator commited on
Commit
4918cff
1 Parent(s): 1417bd3

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "roberta-large",
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
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
+ "id2label": {
14
+ "0": "O",
15
+ "1": "B-corporation",
16
+ "2": "I-corporation",
17
+ "3": "B-creative-work",
18
+ "4": "I-creative-work",
19
+ "5": "B-group",
20
+ "6": "I-group",
21
+ "7": "B-location",
22
+ "8": "I-location",
23
+ "9": "B-person",
24
+ "10": "I-person",
25
+ "11": "B-product",
26
+ "12": "I-product"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 4096,
30
+ "label2id": {
31
+ "B-corporation": 1,
32
+ "B-creative-work": 3,
33
+ "B-group": 5,
34
+ "B-location": 7,
35
+ "B-person": 9,
36
+ "B-product": 11,
37
+ "I-corporation": 2,
38
+ "I-creative-work": 4,
39
+ "I-group": 6,
40
+ "I-location": 8,
41
+ "I-person": 10,
42
+ "I-product": 12,
43
+ "O": 0
44
+ },
45
+ "layer_norm_eps": 1e-05,
46
+ "max_position_embeddings": 514,
47
+ "model_type": "roberta",
48
+ "num_attention_heads": 16,
49
+ "num_hidden_layers": 24,
50
+ "pad_token_id": 1,
51
+ "position_embedding_type": "absolute",
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.20.1",
54
+ "type_vocab_size": 1,
55
+ "use_cache": true,
56
+ "vocab_size": 50265
57
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e773d8c019df92016a0b381ca7a473d4bb1f671fa686724a95e33c1affed2fc5
3
+ size 1417430385
runs/Dec08_17-30-41_677c4a581b65/1670520656.5261197/events.out.tfevents.1670520656.677c4a581b65.17.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:626a418fa96333a4738554436bfcd9a3a775d2fbb99c5b85e2209b5b5a374740
3
+ size 5368
runs/Dec08_17-30-41_677c4a581b65/events.out.tfevents.1670520656.677c4a581b65.17.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28abbabbeef46bc2df65fe51caa3b6cc1ec06ba0b786e418f77243250b2697b4
3
+ size 4733
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
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
+ "add_prefix_space": true,
3
+ "bos_token": "<s>",
4
+ "cls_token": "<s>",
5
+ "eos_token": "</s>",
6
+ "errors": "replace",
7
+ "mask_token": "<mask>",
8
+ "model_max_length": 512,
9
+ "name_or_path": "roberta-large",
10
+ "pad_token": "<pad>",
11
+ "sep_token": "</s>",
12
+ "special_tokens_map_file": null,
13
+ "tokenizer_class": "RobertaTokenizer",
14
+ "trim_offsets": true,
15
+ "unk_token": "<unk>"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6c4931b2cffc458cc072e6676ee3835a8f9d56472fc5871124d99123b0b39e1
3
+ size 3375
vocab.json ADDED
The diff for this file is too large to render. See raw diff