# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("athirdpath/BigMistral-13b")
model = AutoModelForCausalLM.from_pretrained("athirdpath/BigMistral-13b")Quick Links
EDIT: Works pretty well for a model with no finetuning, has promise. Better and lighter than the 14b.
A 13b Mistral base model, based on the NeverSleep recipe. We've had second Mistral, why not third Mistral?
Recipe
slices
sources:
- model: mistralai/Mistral-7B-v0.1
- layer_range: [0, 24]
sources:
- model: mistralai/Mistral-7B-v0.1
- layer_range: [12, 24]
sources:
- model: mistralai/Mistral-7B-v0.1
- layer_range: [8, 32]
merge_method: passthrough
dtype: bfloat16
- Downloads last month
- 11
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="athirdpath/BigMistral-13b")