How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="cym2784841400/Mathstral-7b-v0.1-Custom-Handler")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM

tokenizer = AutoTokenizer.from_pretrained("cym2784841400/Mathstral-7b-v0.1-Custom-Handler")
model = AutoModelForMultimodalLM.from_pretrained("cym2784841400/Mathstral-7b-v0.1-Custom-Handler")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

This model is based on mistralai/Mathstral-7B-v0.1 (commit b6408c3) and has not made changes to the model itself.

We added a special Custom Handler (handler.py and other necessary files, dependencies, etc) to the model.

For more information, please refer to the original model card.

Downloads last month
11
Safetensors
Model size
7B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for cym2784841400/Mathstral-7b-v0.1-Custom-Handler

Finetuned
(17)
this model