Jamba Models
Collection
Experimentations with the new SSM-Transformers Jamba • 4 items • Updated • 1
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Severian/Jamba-UltraInteract-Instruct-1B", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("Severian/Jamba-UltraInteract-Instruct-1B", trust_remote_code=True)Base model
ai21labs/Jamba-v0.1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Severian/Jamba-UltraInteract-Instruct-1B", trust_remote_code=True)