ocaklisemih
commited on
Commit
•
5d3c7b0
1
Parent(s):
6f9b347
Upload 5 files
Browse filesAdd model and configuration files
- config.json +35 -0
- merges.txt +2 -0
- tokenizer.json +14 -0
- tokenizer_config.json +14 -0
- vocab.txt +4 -0
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "sekerlipencere-zynpdata-mistral-7b-summarization",
|
5 |
+
"bias": "none",
|
6 |
+
"fan_in_fan_out": false,
|
7 |
+
"inference_mode": true,
|
8 |
+
"init_lora_weights": true,
|
9 |
+
"layer_replication": null,
|
10 |
+
"layers_pattern": null,
|
11 |
+
"layers_to_transform": null,
|
12 |
+
"loftq_config": {},
|
13 |
+
"lora_alpha": 16,
|
14 |
+
"lora_dropout": 0.05,
|
15 |
+
"megatron_config": null,
|
16 |
+
"megatron_core": "megatron.core",
|
17 |
+
"modules_to_save": null,
|
18 |
+
"peft_type": "LORA",
|
19 |
+
"r": 8,
|
20 |
+
"rank_pattern": {},
|
21 |
+
"revision": null,
|
22 |
+
"target_modules": [
|
23 |
+
"gate_proj",
|
24 |
+
"lm_head",
|
25 |
+
"k_proj",
|
26 |
+
"down_proj",
|
27 |
+
"q_proj",
|
28 |
+
"o_proj",
|
29 |
+
"up_proj",
|
30 |
+
"v_proj"
|
31 |
+
],
|
32 |
+
"task_type": "CAUSAL_LM",
|
33 |
+
"use_dora": false,
|
34 |
+
"use_rslora": false
|
35 |
+
}
|
merges.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
#version: 0.2
|
2 |
+
# All merges are listed here.
|
tokenizer.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"token_to_id": {
|
3 |
+
"<|pad|>": 0,
|
4 |
+
"<|unk|>": 1,
|
5 |
+
"<|start|>": 2,
|
6 |
+
"<|end|>": 3
|
7 |
+
},
|
8 |
+
"id_to_token": {
|
9 |
+
"0": "<|pad|>",
|
10 |
+
"1": "<|unk|>",
|
11 |
+
"2": "<|start|>",
|
12 |
+
"3": "<|end|>"
|
13 |
+
}
|
14 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "mistral",
|
3 |
+
"tokenizer_class": "AutoTokenizer",
|
4 |
+
"pad_token": "<|pad|>",
|
5 |
+
"unk_token": "<|unk|>",
|
6 |
+
"bos_token": "<|start|>",
|
7 |
+
"eos_token": "<|end|>",
|
8 |
+
"additional_special_tokens": [
|
9 |
+
"<|pad|>",
|
10 |
+
"<|unk|>",
|
11 |
+
"<|start|>",
|
12 |
+
"<|end|>"
|
13 |
+
]
|
14 |
+
}
|
vocab.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<|pad|>
|
2 |
+
<|unk|>
|
3 |
+
<|start|>
|
4 |
+
<|end|>
|