seyf1elislam commited on
Commit
e834466
1 Parent(s): 9301261

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - merge
4
+ - mergekit
5
+ - lazymergekit
6
+ - SanjiWatsuki/Kunoichi-DPO-v2-7B
7
+ - mlabonne/NeuralBeagle14-7B
8
+ base_model:
9
+ - SanjiWatsuki/Kunoichi-DPO-v2-7B
10
+ - mlabonne/NeuralBeagle14-7B
11
+ ---
12
+
13
+ # KunaiBeagle-7b
14
+
15
+ KunaiBeagle-7b is a merge of the following models using LazyMergekit:
16
+ * [SanjiWatsuki/Kunoichi-DPO-v2-7B](https://huggingface.co/SanjiWatsuki/Kunoichi-DPO-v2-7B)
17
+ * [mlabonne/NeuralBeagle14-7B](https://huggingface.co/mlabonne/NeuralBeagle14-7B)
18
+
19
+ ## 🧩 Configuration
20
+
21
+ ```yaml
22
+ models:
23
+ - model: mistralai/Mistral-7B-v0.1
24
+ # No parameters necessary for base model
25
+ - model: SanjiWatsuki/Kunoichi-DPO-v2-7B
26
+ parameters:
27
+ weight: 0.4
28
+ density: 0.6
29
+ - model: mlabonne/NeuralBeagle14-7B
30
+ parameters:
31
+ weight: 0.4
32
+ density: 0.6
33
+ merge_method: dare_ties
34
+ base_model: mistralai/Mistral-7B-v0.1
35
+ parameters:
36
+ int8_mask: true
37
+ dtype: bfloat16
38
+ ```
39
+
40
+ ## 💻 Usage
41
+
42
+ ```python
43
+ !pip install -qU transformers accelerate
44
+
45
+ from transformers import AutoTokenizer
46
+ import transformers
47
+ import torch
48
+
49
+ model = "seyf1elislam/KunaiBeagle-7b"
50
+ messages = [{"role": "user", "content": "What is a large language model?"}]
51
+
52
+ tokenizer = AutoTokenizer.from_pretrained(model)
53
+ prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
54
+ pipeline = transformers.pipeline(
55
+ "text-generation",
56
+ model=model,
57
+ torch_dtype=torch.float16,
58
+ device_map="auto",
59
+ )
60
+
61
+ outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
62
+ print(outputs[0]["generated_text"])
63
+ ```