qfrodicio commited on
Commit
3c167d9
1 Parent(s): 0914f28

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "roberta-base",
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": 768,
13
+ "id2label": {
14
+ "0": "B-OTHER_PEER",
15
+ "1": "I-OTHER_PEER",
16
+ "2": "B-EXPLAIN",
17
+ "3": "I-EXPLAIN",
18
+ "4": "B-SELF",
19
+ "5": "I-SELF",
20
+ "6": "B-NO",
21
+ "7": "I-NO",
22
+ "8": "B-QUESTION",
23
+ "9": "I-QUESTION",
24
+ "10": "B-NO_GESTURE",
25
+ "11": "I-NO_GESTURE",
26
+ "12": "B-YES",
27
+ "13": "I-YES",
28
+ "14": "B-NEUTRAL",
29
+ "15": "I-NEUTRAL",
30
+ "16": "B-FRONT",
31
+ "17": "I-FRONT"
32
+ },
33
+ "initializer_range": 0.02,
34
+ "intermediate_size": 3072,
35
+ "label2id": {
36
+ "B-EXPLAIN": 2,
37
+ "B-FRONT": 16,
38
+ "B-NEUTRAL": 14,
39
+ "B-NO": 6,
40
+ "B-NO_GESTURE": 10,
41
+ "B-OTHER_PEER": 0,
42
+ "B-QUESTION": 8,
43
+ "B-SELF": 4,
44
+ "B-YES": 12,
45
+ "I-EXPLAIN": 3,
46
+ "I-FRONT": 17,
47
+ "I-NEUTRAL": 15,
48
+ "I-NO": 7,
49
+ "I-NO_GESTURE": 11,
50
+ "I-OTHER_PEER": 1,
51
+ "I-QUESTION": 9,
52
+ "I-SELF": 5,
53
+ "I-YES": 13
54
+ },
55
+ "layer_norm_eps": 1e-05,
56
+ "max_position_embeddings": 514,
57
+ "model_type": "roberta",
58
+ "num_attention_heads": 12,
59
+ "num_hidden_layers": 12,
60
+ "pad_token_id": 1,
61
+ "position_embedding_type": "absolute",
62
+ "torch_dtype": "float32",
63
+ "transformers_version": "4.26.1",
64
+ "type_vocab_size": 1,
65
+ "use_cache": true,
66
+ "vocab_size": 50265
67
+ }
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:04decc147281ea393f41bfcf3cb44ea4a682483eea79c1ffd48eee83ff165d3a
3
+ size 496348269
runs/Mar07_22-52-29_87c0b64a3109/1678229560.821448/events.out.tfevents.1678229560.87c0b64a3109.404.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65a8a316f2d5e29538b210af94a85cae889f1c30e2749ff88e61c5a0ceffd07e
3
+ size 5754
runs/Mar07_22-52-29_87c0b64a3109/events.out.tfevents.1678229560.87c0b64a3109.404.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04bcd9e61a91432906b1d726c7633aacfb8519fafd4236f1daf400d916dbaebd
3
+ size 5329
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-base",
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:e0001dcd96c1cdcb2d9b2a221d84ad4634a7c351e93f643f7e486a8cbba93732
3
+ size 3515
vocab.json ADDED
The diff for this file is too large to render. See raw diff