File size: 1,779 Bytes
e84eb55
 
 
 
 
 
 
 
 
 
e74c7ba
e84eb55
 
 
bd9d49a
8a70a84
 
bd9d49a
8a70a84
bd9d49a
8a70a84
e84eb55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
tags:
- merge
- mergekit
- lazymergekit
- BioMistral/BioMistral-7B
- Nexusflow/Starling-LM-7B-beta
base_model:
- BioMistral/BioMistral-7B
- Nexusflow/Starling-LM-7B-beta
license: apache-2.0
---

# BioLing-7B-Dare
[<img src="https://repository-images.githubusercontent.com/104670986/2e728700-ace4-11ea-9cfc-f3e060b25ddf">](http://www.johnsnowlabs.com)


This model is developed by [John Snow Labs](https://www.johnsnowlabs.com/).

This model is available under a [CC-BY-NC-ND](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) license and must also conform to this [Acceptable Use Policy](https://huggingface.co/johnsnowlabs). If you need to license  this model for commercial use, please contact us at info@johnsnowlabs.com.


## 🧩 Configuration

```yaml
models:
  - model: BioMistral/BioMistral-7B
    parameters:
      density: 0.53
      weight: 0.4
  - model: Nexusflow/Starling-LM-7B-beta
    parameters:
      density: 0.53
      weight: 0.3

merge_method: dare_ties
base_model: BioMistral/BioMistral-7B
parameters:
  int8_mask: true
dtype: bfloat16
```

## 💻 Usage

```python
!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "johnsnowlabs/BioLing-7B-Dare"
messages = [{"role": "user", "content": "What is a large language model?"}]

tokenizer = AutoTokenizer.from_pretrained(model)
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
pipeline = transformers.pipeline(
    "text-generation",
    model=model,
    torch_dtype=torch.float16,
    device_map="auto",
)

outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])
```
## 🏆 Evaluation
Coming Soon!