Edit model card
Configuration Parsing Warning: In config.json: "architectures" must be an array
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Levanter Backpacks

Example:

import torch
import transformers
from transformers import AutoModelForCausalLM


model_id = "ivanzhouyq/levanter-backpacks"
config = transformers.AutoConfig.from_pretrained(model_id, trust_remote_code=True)
torch_model = AutoModelForCausalLM.from_pretrained(model_id, config=config, trust_remote_code=True)
torch_model.eval()

input = torch.randint(0, 50264, (1, 512), dtype=torch.long)
torch_out = torch_model(
    input,
    position_ids=None,
)
torch_out = torch.nn.functional.softmax(torch_out.logits, dim=-1)

Note that you need to install safetensors together with transformers and torch to make it work.

Downloads last month
28
Safetensors
Model size
209M params
Tensor type
F32
·
Unable to determine this model’s pipeline type. Check the docs .