CoolFace
Modelpublic

Technoculture/Medmerge-tulu-70b

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
3likes68downloads
Model Card

Medmerge-tulu-70b

Medmerge-tulu-70b is a merge of the following models:

Open LLM Leaderboard

image/png

Model NameARCHellaSwagMMLUTruthfulQAWinograndeGSM8K
tulu-2-dpo-70b72.188.9969.8465.7883.2762.62
Medmerge-tulu-70b67.8187.4670.147.8983.4356.56

Performance

Clinical Camel demonstrates competitive performance on medical benchmarks.

Table: Five-Shot Performance of Clinical Camel-70B (C70), GPT3.5, GPT4, and Med-PaLM 2 on Various Medical Datasets

DatasetMedmerge-tulu-70bClinicalCamel-70BGPT3.5GPT4Med-PaLM 2
MMLU Anatomy66.665.260.780.077.8
MMLU Clinical Knowledge72.072.868.786.488.3
MMLU College Biology84.781.272.993.894.4
MMLU College Medicine64.268.263.676.380.9
MMLU Medical Genetics76.069.068.092.090.0
MMLU Professional Medicine75.775.069.893.895.2
MedMCQA54.251.072.471.3
MedQA (USMLE)60.753.681.479.7
PubMedQA77.960.274.479.2
USMLE Sample Exam64.358.586.6-

🧩 Configuration

yaml
models:
  - model: NousResearch/Llama-2-70b-hf
    # no parameters necessary for base model
  - model: wanglab/ClinicalCamel-70B
    parameters:
      weight: 0.08
      density: 0.45
  - model: epfl-llm/meditron-70b
    parameters:
      weight: 0.08
      density: 0.45
  - model: allenai/tulu-2-dpo-70b
    parameters:
      weight: 0.08
      density: 0.45
merge_method: dare_ties
base_model: NousResearch/Llama-2-70b-hf
parameters:
  int8_mask: true
dtype: bfloat16

💻 Usage

python
!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "Technoculture/Medmerge-tulu-70b"
messages = [{"role": "user", "content": "I am feeling sleepy these days"}]

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"])