#The model is experimental, so the results cannot be guaranteed.

Merge Details

Merge Method

This model was merged using the passthrough merge method using wwe180/Llama3-35B-lingyang-v1 as a base.

Models Merged

The following models were included in the merge:

πŸ’» Usage

!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "wwe180/Llama3-35B-lingyang-v1"
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",
)
Downloads last month
10
Safetensors
Model size
35.5B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for wwe180/Llama3-35B-lingyang-v1

Unable to build the model tree, the base model loops to the model itself. Learn more.