Edit model card

BioLing-7B-Dare

This model is developed by John Snow Labs.

This model is available under a CC-BY-NC-ND license and must also conform to this Acceptable Use Policy. If you need to license this model for commercial use, please contact us at [email protected].

🧩 Configuration

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

!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!

Downloads last month
2,594
Safetensors
Model size
7.24B params
Tensor type
BF16
Β·
Inference Examples
Inference API (serverless) is not available, repository is disabled.

Model tree for johnsnowlabs/BioLing-7B-Dare

Spaces using johnsnowlabs/BioLing-7B-Dare 3