Training in progress, epoch 0
Browse files- .gitignore +1 -0
- adapter_config.json +21 -0
- adapter_model.bin +3 -0
- runs/Jul16_21-57-51_njvf638mhh/events.out.tfevents.1689544680.njvf638mhh.2060.0 +3 -0
- runs/Jul16_22-06-53_njvf638mhh/events.out.tfevents.1689545217.njvf638mhh.2060.1 +3 -0
- runs/Jul16_22-27-29_n42jjffi6n/events.out.tfevents.1689546452.n42jjffi6n.1889.0 +3 -0
- special_tokens_map.json +10 -0
- tokenizer_config.json +22 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
adapter_config.json
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"auto_mapping": null,
|
3 |
+
"base_model_name_or_path": "Salesforce/xgen-7b-8k-base",
|
4 |
+
"bias": "none",
|
5 |
+
"fan_in_fan_out": false,
|
6 |
+
"inference_mode": true,
|
7 |
+
"init_lora_weights": true,
|
8 |
+
"layers_pattern": null,
|
9 |
+
"layers_to_transform": null,
|
10 |
+
"lora_alpha": 32,
|
11 |
+
"lora_dropout": 0.05,
|
12 |
+
"modules_to_save": null,
|
13 |
+
"peft_type": "LORA",
|
14 |
+
"r": 16,
|
15 |
+
"revision": null,
|
16 |
+
"target_modules": [
|
17 |
+
"q_proj",
|
18 |
+
"v_proj"
|
19 |
+
],
|
20 |
+
"task_type": "CAUSAL_LM"
|
21 |
+
}
|
adapter_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f52c4fb1fcc87e226fcf7d42dcc062dd9d397fefe1d9c2270658e6ac29b7f9e4
|
3 |
+
size 33600461
|
runs/Jul16_21-57-51_njvf638mhh/events.out.tfevents.1689544680.njvf638mhh.2060.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb3aedcfa1ff976d6eecf0e03ab651dc98b7c06151dc318b60392e8dde4ac6bc
|
3 |
+
size 4316
|
runs/Jul16_22-06-53_njvf638mhh/events.out.tfevents.1689545217.njvf638mhh.2060.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:84dbb35dc0fa8c0225653c32dd56826a3f7f580ca46b3c977213c6379da2c13f
|
3 |
+
size 4314
|
runs/Jul16_22-27-29_n42jjffi6n/events.out.tfevents.1689546452.n42jjffi6n.1889.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:84062fe789dc1ae8698d59504c1899ccb33688a936c018a0d1ca184ef12a46a7
|
3 |
+
size 6509
|
special_tokens_map.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"eos_token": {
|
3 |
+
"content": "<|endoftext|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": true,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"pad_token": "<|endoftext|>"
|
10 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_eos_token": false,
|
3 |
+
"add_special_tokens": true,
|
4 |
+
"auto_map": {
|
5 |
+
"AutoTokenizer": [
|
6 |
+
"Salesforce/xgen-7b-8k-base--tokenization_xgen.XgenTokenizer",
|
7 |
+
null
|
8 |
+
]
|
9 |
+
},
|
10 |
+
"clean_up_tokenization_spaces": true,
|
11 |
+
"eos_token": {
|
12 |
+
"__type": "AddedToken",
|
13 |
+
"content": "<|endoftext|>",
|
14 |
+
"lstrip": false,
|
15 |
+
"normalized": true,
|
16 |
+
"rstrip": false,
|
17 |
+
"single_word": false
|
18 |
+
},
|
19 |
+
"model_max_length": 8192,
|
20 |
+
"pad_token": null,
|
21 |
+
"tokenizer_class": "XgenTokenizer"
|
22 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eff5fbf1b883844c5ae967bbf9f1bc9a9fc876d5961bd484f9a809f55f277058
|
3 |
+
size 3963
|