Kevin201217 commited on
Commit
4a28010
1 Parent(s): f5da983

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,17 +1,15 @@
1
  {
2
  "_name_or_path": "microsoft/biogpt",
3
  "activation_dropout": 0.0,
4
- "activation_function": "gelu_new",
5
  "architectures": [
6
- "GPT2ForTokenClassification"
7
  ],
8
  "attention_probs_dropout_prob": 0.1,
9
- "attn_pdrop": 0.1,
10
  "bos_token_id": 0,
11
- "embd_pdrop": 0.1,
12
  "eos_token_id": 2,
13
  "hidden_act": "gelu",
14
  "hidden_dropout_prob": 0.1,
 
15
  "id2label": {
16
  "0": "LABEL_0",
17
  "1": "LABEL_1",
@@ -25,25 +23,13 @@
25
  "LABEL_2": 2
26
  },
27
  "layer_norm_eps": 1e-12,
28
- "layer_norm_epsilon": 1e-05,
29
  "layerdrop": 0.0,
30
- "model_type": "gpt2",
31
- "n_embd": 1024,
32
- "n_head": 16,
33
- "n_inner": null,
34
- "n_layer": 24,
35
- "n_positions": 1024,
36
  "pad_token_id": 1,
37
- "reorder_and_upcast_attn": false,
38
- "resid_pdrop": 0.1,
39
- "scale_attn_by_inverse_layer_idx": false,
40
- "scale_attn_weights": true,
41
  "scale_embedding": true,
42
- "summary_activation": null,
43
- "summary_first_dropout": 0.1,
44
- "summary_proj_to_labels": true,
45
- "summary_type": "cls_index",
46
- "summary_use_proj": true,
47
  "torch_dtype": "float32",
48
  "transformers_version": "4.38.2",
49
  "use_cache": true,
 
1
  {
2
  "_name_or_path": "microsoft/biogpt",
3
  "activation_dropout": 0.0,
 
4
  "architectures": [
5
+ "BioGptForTokenClassification"
6
  ],
7
  "attention_probs_dropout_prob": 0.1,
 
8
  "bos_token_id": 0,
 
9
  "eos_token_id": 2,
10
  "hidden_act": "gelu",
11
  "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
  "id2label": {
14
  "0": "LABEL_0",
15
  "1": "LABEL_1",
 
23
  "LABEL_2": 2
24
  },
25
  "layer_norm_eps": 1e-12,
 
26
  "layerdrop": 0.0,
27
+ "max_position_embeddings": 1024,
28
+ "model_type": "biogpt",
29
+ "num_attention_heads": 16,
30
+ "num_hidden_layers": 24,
 
 
31
  "pad_token_id": 1,
 
 
 
 
32
  "scale_embedding": true,
 
 
 
 
 
33
  "torch_dtype": "float32",
34
  "transformers_version": "4.38.2",
35
  "use_cache": true,
merges.txt CHANGED
The diff for this file is too large to render. See raw diff
 
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8061775b58f26eb8df789c4ff3a64f281c29bd162081a68c5251f66990361575
3
- size 1387087524
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8231e2827d31aca14b62e1151de5182f17da6b621f74b2c426c5f627b140e7f1
3
+ size 1387108052
runs/Apr13_04-28-07_441548a08422/events.out.tfevents.1712982885.441548a08422.2625.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85ff7c296fa236f80c4f4b3fa94688fc41cbff8bc85ad748368ad1eb05c2fd04
3
+ size 560
runs/Apr13_05-00-16_441548a08422/events.out.tfevents.1712984417.441548a08422.2625.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baf2fc125ee55a1e092471459d583575207a68f8c4b245a7ce7a94632f44539a
3
+ size 5108
runs/Apr13_05-01-53_441548a08422/events.out.tfevents.1712984514.441548a08422.2625.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1576f8c4c32f65b305847caf7a5367cd759aa02cbca8f7ebd3a9aa83bf4acf2a
3
+ size 5417
special_tokens_map.json CHANGED
@@ -1,23 +1,7 @@
1
  {
2
- "bos_token": {
3
- "content": "<|endoftext|>",
4
- "lstrip": false,
5
- "normalized": true,
6
- "rstrip": false,
7
- "single_word": false
8
- },
9
- "eos_token": {
10
- "content": "<|endoftext|>",
11
- "lstrip": false,
12
- "normalized": true,
13
- "rstrip": false,
14
- "single_word": false
15
- },
16
- "unk_token": {
17
- "content": "<|endoftext|>",
18
- "lstrip": false,
19
- "normalized": true,
20
- "rstrip": false,
21
- "single_word": false
22
- }
23
  }
 
1
  {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "pad_token": "<pad>",
5
+ "sep_token": "</s>",
6
+ "unk_token": "<unk>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
tokenizer_config.json CHANGED
@@ -1,22 +1,44 @@
1
  {
2
- "add_bos_token": false,
3
- "add_prefix_space": false,
4
  "added_tokens_decoder": {
5
- "42384": {
6
- "content": "<|endoftext|>",
7
  "lstrip": false,
8
- "normalized": true,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  "rstrip": false,
10
  "single_word": false,
11
  "special": true
12
  }
13
  },
14
- "bos_token": "<|endoftext|>",
15
  "clean_up_tokenization_spaces": true,
16
- "eos_token": "<|endoftext|>",
17
- "errors": "replace",
18
- "model_max_length": 1000000000000000019884624838656,
19
- "pad_token": null,
20
- "tokenizer_class": "GPT2Tokenizer",
21
- "unk_token": "<|endoftext|>"
22
  }
 
1
  {
 
 
2
  "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<s>",
5
  "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<pad>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  }
35
  },
36
+ "bos_token": "<s>",
37
  "clean_up_tokenization_spaces": true,
38
+ "eos_token": "</s>",
39
+ "model_max_length": 1024,
40
+ "pad_token": "<pad>",
41
+ "sep_token": "</s>",
42
+ "tokenizer_class": "BioGptTokenizer",
43
+ "unk_token": "<unk>"
44
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2dfce4f8db85d2c66e754f6b798d53343abf13e4e70e588868a4aa509f68d596
3
  size 4984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8aee829f7127907d25b04ce452e5079329ae88cd4178acd8d487448a80ff6d61
3
  size 4984