dmargutierrez commited on
Commit
c6e4b63
·
1 Parent(s): 3b7e9d8

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": "distilroberta-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": "O",
15
+ "1": "B-ORGANISATION",
16
+ "2": "I-ORGANISATION",
17
+ "3": "B-ADDRESS",
18
+ "4": "I-ADDRESS",
19
+ "5": "B-DATE",
20
+ "6": "I-DATE",
21
+ "7": "B-PERSON",
22
+ "8": "I-PERSON",
23
+ "9": "B-AMOUNT",
24
+ "10": "I-AMOUNT",
25
+ "11": "B-TIME",
26
+ "12": "I-TIME"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "B-ADDRESS": 3,
32
+ "B-AMOUNT": 9,
33
+ "B-DATE": 5,
34
+ "B-ORGANISATION": 1,
35
+ "B-PERSON": 7,
36
+ "B-TIME": 11,
37
+ "I-ADDRESS": 4,
38
+ "I-AMOUNT": 10,
39
+ "I-DATE": 6,
40
+ "I-ORGANISATION": 2,
41
+ "I-PERSON": 8,
42
+ "I-TIME": 12,
43
+ "O": 0
44
+ },
45
+ "layer_norm_eps": 1e-05,
46
+ "max_position_embeddings": 514,
47
+ "model_type": "roberta",
48
+ "num_attention_heads": 12,
49
+ "num_hidden_layers": 6,
50
+ "pad_token_id": 1,
51
+ "position_embedding_type": "absolute",
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.26.0",
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:d464bfb7705da9b1473316a32f9f7658f08ff8f5a2cdebbf134ffd4ae6afe6dc
3
+ size 326190701
runs/Mar17_11-20-25_t1-45-bhs5/1679052033.613585/events.out.tfevents.1679052033.t1-45-bhs5.22981.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e32e40c39fdc6c5d29e6220492ea70abdd81fb66b409c75349b2a6e37b3dd6c0
3
+ size 5716
runs/Mar17_11-20-25_t1-45-bhs5/events.out.tfevents.1679052033.t1-45-bhs5.22981.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1139eca7ddaae1481dfe6c1a03fd6b8e62623758675580e237382724b896ebc0
3
+ size 5377
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": "distilroberta-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:f197289935e09e3e9a094f42736a40f3afdc747f88d8074073161b5119b5f02c
3
+ size 3515
vocab.json ADDED
The diff for this file is too large to render. See raw diff