Baljinnyam commited on
Commit
2904b12
1 Parent(s): b232f55

Training in progress, epoch 1

Browse files
.gitattributes CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bigscience/bloom-560m",
3
+ "apply_residual_connection_post_layernorm": false,
4
+ "architectures": [
5
+ "BloomForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "attention_softmax_in_fp32": true,
9
+ "bias_dropout_fusion": true,
10
+ "bos_token_id": 1,
11
+ "eos_token_id": 2,
12
+ "finetuning_task": "ner",
13
+ "hidden_dropout": 0.0,
14
+ "hidden_size": 1024,
15
+ "id2label": {
16
+ "0": "O",
17
+ "1": "LOC",
18
+ "2": "MISC",
19
+ "3": "ORG",
20
+ "4": "PER"
21
+ },
22
+ "initializer_range": 0.02,
23
+ "label2id": {
24
+ "LOC": 1,
25
+ "MISC": 2,
26
+ "O": 0,
27
+ "ORG": 3,
28
+ "PER": 4
29
+ },
30
+ "layer_norm_epsilon": 1e-05,
31
+ "masked_softmax_fusion": true,
32
+ "model_type": "bloom",
33
+ "n_head": 16,
34
+ "n_inner": null,
35
+ "n_layer": 24,
36
+ "offset_alibi": 100,
37
+ "pad_token_id": 3,
38
+ "pretraining_tp": 1,
39
+ "skip_bias_add": true,
40
+ "skip_bias_add_qkv": false,
41
+ "slow_but_exact": false,
42
+ "torch_dtype": "float32",
43
+ "transformers_version": "4.28.1",
44
+ "unk_token_id": 0,
45
+ "use_cache": true,
46
+ "vocab_size": 250880
47
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fb038e1569262c8ccf8297923679ae49d83657f08d7a50ef94be0aa5ad74785
3
+ size 2236978473
runs/May01_05-36-41_2335aeae3759/1682919406.7666152/events.out.tfevents.1682919406.2335aeae3759.1568.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01e44df662e794c5779e2cf4f87a0ba1678edcaf6933889fe63467c513d9f1ff
3
+ size 5855
runs/May01_05-36-41_2335aeae3759/events.out.tfevents.1682919406.2335aeae3759.1568.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9316ee32685a1de06732c1fc17f49f019ae64d9f9a185dbf67104ed6f8a28a00
3
+ size 4184
runs/May01_05-37-55_2335aeae3759/1682919479.6182523/events.out.tfevents.1682919479.2335aeae3759.1568.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d8b877d436a40125881b37f2b15e84760a520a7780e2b73937ae865cacaed43
3
+ size 5855
runs/May01_05-37-55_2335aeae3759/events.out.tfevents.1682919479.2335aeae3759.1568.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:873d9822eac71c048605653945660544535bc2a26889a544a7d081ccd9157f9f
3
+ size 4184
runs/May01_05-39-15_2335aeae3759/1682919562.0020773/events.out.tfevents.1682919562.2335aeae3759.3772.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e218cede0379850b72dcb7c1ffc9e9493090b7f8d4c028a5e614d355f68e5f53
3
+ size 5855
runs/May01_05-39-15_2335aeae3759/events.out.tfevents.1682919561.2335aeae3759.3772.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d12921c069eae714cae3e5e0e4bf92cbf2776d33c1684fc57f7ed8a8f8f37805
3
+ size 4936
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "pad_token": "<pad>",
5
+ "unk_token": "<unk>"
6
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17a208233d2ee8d8c83b23bc214df737c44806a1919f444e89b31e586cd956ba
3
+ size 14500471
tokenizer_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "bos_token": "<s>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "</s>",
6
+ "model_max_length": 1000000000000000019884624838656,
7
+ "pad_token": "<pad>",
8
+ "padding_side": "left",
9
+ "tokenizer_class": "BloomTokenizer",
10
+ "unk_token": "<unk>"
11
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90131bb658b2b2bb694b358c49c05a175c0bc0d8029d99f61604b5fc5c9ea72d
3
+ size 3515