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,691
Safetensors
Model size
7.24B params
Tensor type
BF16
Β·
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.

Model tree for johnsnowlabs/BioLing-7B-Dare

Merge model
this model
Quantizations
2 models

Spaces using johnsnowlabs/BioLing-7B-Dare 6