Upload 3 files
Browse files- README.md +61 -3
- adapter_config.json +34 -0
- adapter_model.safetensors +3 -0
README.md
CHANGED
@@ -1,3 +1,61 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: peft
|
3 |
+
base_model: unsloth/llama-3-8b-bnb-4bit
|
4 |
+
---
|
5 |
+
|
6 |
+
# Model Card for Model ID
|
7 |
+
|
8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
+
QEU/Unsloth_creative
|
10 |
+
|
11 |
+
|
12 |
+
## Model Details
|
13 |
+
|
14 |
+
### Model Description
|
15 |
+
|
16 |
+
<!-- Provide a longer summary of what this model is. -->
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
- **Developed by:** QEU
|
21 |
+
- **Model type:** Unsloth lora adapter
|
22 |
+
- **Language(s) (NLP):** llama-3-8b
|
23 |
+
- **License:** apache-2.0
|
24 |
+
|
25 |
+
### Model Sources
|
26 |
+
|
27 |
+
<!-- Provide the basic links for the model. -->
|
28 |
+
|
29 |
+
- **blog:** [QEU_blog](https://jpnqeur23phi2sft.blogspot.com/2024/05/qeur23phi2sft21-creativereasoning.html)
|
30 |
+
|
31 |
+
## Uses
|
32 |
+
|
33 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
34 |
+
|
35 |
+
このモデルは、BONSAIプロジェクトの初期段階の成果物です。Unslothの技術を使って、finetuneされています。
|
36 |
+
|
37 |
+
|
38 |
+
### Out-of-Scope Use
|
39 |
+
|
40 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
41 |
+
|
42 |
+
かなり特殊なプロンプト設計がされているのので、ブログを参考にして推論プログラムを設計してください。
|
43 |
+
|
44 |
+
## Bias, Risks, and Limitations
|
45 |
+
|
46 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
47 |
+
|
48 |
+
[More Information Needed]
|
49 |
+
|
50 |
+
### Recommendations
|
51 |
+
|
52 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
53 |
+
|
54 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
55 |
+
|
56 |
+
## How to Get Started with the Model
|
57 |
+
|
58 |
+
Use the code below to get started with the model.
|
59 |
+
|
60 |
+
準備中
|
61 |
+
|
adapter_config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "unsloth/llama-3-8b-bnb-4bit",
|
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,
|
15 |
+
"megatron_config": null,
|
16 |
+
"megatron_core": "megatron.core",
|
17 |
+
"modules_to_save": null,
|
18 |
+
"peft_type": "LORA",
|
19 |
+
"r": 16,
|
20 |
+
"rank_pattern": {},
|
21 |
+
"revision": "unsloth",
|
22 |
+
"target_modules": [
|
23 |
+
"gate_proj",
|
24 |
+
"o_proj",
|
25 |
+
"v_proj",
|
26 |
+
"down_proj",
|
27 |
+
"k_proj",
|
28 |
+
"q_proj",
|
29 |
+
"up_proj"
|
30 |
+
],
|
31 |
+
"task_type": "CAUSAL_LM",
|
32 |
+
"use_dora": false,
|
33 |
+
"use_rslora": false
|
34 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:908994fa72eb648660e7aad42f612d715a483af64ca23285cb557b65f7ee1d73
|
3 |
+
size 167832240
|