Edit model card

dolphin-2.9-llama3-8b-emb

This is an embedding model created with llm2vec. Based on the paper LLM2Vec: Large Language Models Are Secretly Powerful Text Encoders

Mostly just an experiment I will update the model card with any findings.

Config

{{
    "model_name_or_path": "{MODEL_ID}",
    "dataset_name": "{DATASET}",
    "per_device_train_batch_size": 1,
    "per_device_eval_batch_size": 1,
    "gradient_accumulation_steps": 16,
    "do_train": true,
    "do_eval": true,
    "max_seq_length": 512,
    "mask_token_type": "blank",
    "data_collator_type": "all_mask",
    "mlm_probability": 0.8,
    "overwrite_output_dir": true,
    "output_dir": "out/adapter",
    "evaluation_strategy": "steps",
    "eval_steps": 100,
    "num_train_epochs": {EPOCHS},
    "save_steps": 200,
    "lora_r": {LORA_RANK},
    "gradient_checkpointing": true,
    "torch_dtype": "bfloat16",
    "attn_implementation": "flash_attention_2"
}}

Usage

import torch
from llm2vec import LLM2Vec

l2v = LLM2Vec.from_pretrained(
    "macadeliccc/dolphin-2.9-llama3-8b-emb",
    peft_model_name_or_path="macadeliccc/dolphin-2.9-llama3-8b-emb",
    device_map="cuda" if torch.cuda.is_available() else "cpu",
    torch_dtype=torch.bfloat16,
)
# Encoding queries using instructions
instruction = (
    "Given a web search query, retrieve relevant passages that answer the query:"
)
queries = [
    [instruction, "how much protein should a female eat"],
    [instruction, "summit define"],
]
q_reps = l2v.encode(queries)

# Encoding documents. Instruction are not required for documents
documents = [
    "As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
    "Definition of summit for English Language Learners. : 1  the highest point of a mountain : the top of a mountain. : 2  the highest level. : 3  a meeting or series of meetings between the leaders of two or more governments.",
]
d_reps = l2v.encode(documents)

# Compute cosine similarity
q_reps_norm = torch.nn.functional.normalize(q_reps, p=2, dim=1)
d_reps_norm = torch.nn.functional.normalize(d_reps, p=2, dim=1)
cos_sim = torch.mm(q_reps_norm, d_reps_norm.transpose(0, 1))

print(cos_sim)
"""
tensor([[0.5485, 0.0551],
        [0.0565, 0.5425]])
"""
Downloads last month
46
Safetensors
Model size
7.5B params
Tensor type
BF16
·
Unable to determine this model’s pipeline type. Check the docs .

Finetuned from

Dataset used to train macadeliccc/dolphin-2.9-llama3-8b-emb