@misc{hf_model__ngxson__home_cook_mistral_small_omni_24b_2507_gguf,
author = {ngxson},
title = {Home Cook Mistral Small Omni 24b 2507 Gguf Model},
year = {2026},
howpublished = {\url{https://huggingface.co/ngxson/home-cook-mistral-small-omni-24b-2507-gguf}},
note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
ngxson. (2026). Home Cook Mistral Small Omni 24b 2507 Gguf [Model]. Free2AITools. https://huggingface.co/ngxson/home-cook-mistral-small-omni-24b-2507-gguf
đŦTechnical Deep Dive
Full Specifications [+]âž
Quick Commands
đĻ Ollama Run
ollama run home-cook-mistral-small-omni-24b-2507-gguf
This is a multimodal model created by merging Mistral Small 2506 (with vision capabilities) and Voxtral 2507 (with audio capabilities) using a modified version of the mergekit tool.
For detailed merging instructions, refer to the sections below.
License and Attribution
This model is a merged derivative work combining Mistral Small 2506 and Voxtral 2507, both originally released by Mistral AI under the Apache 2.0 license. The merged model is also distributed under the Apache 2.0 license, and the full license text, along with original copyright notices, is included in this repository. I have no affiliation, sponsorship, or formal relationship with Mistral AI. This project is an independent effort to combine the vision and audio capabilities of the two models.
Modify the mergekit source code, open file mergekit/merge_methods/generalized_task_arithmetic.py
py
# Normalize the vectors to get the directions and angles
v0 = normalize(v0, eps)
v1 = normalize(v1, eps)
if v0.shape != v1.shape: # ADD THIS
res = np.array([0.0]) # ADD THIS
return maybe_torch(res, is_torch) # ADD THIS
# Dot product with the normalized vectors (can't use np.dot in W)
dot = np.sum(v0 * v1)
# If absolute value of dot product is almost 1, vectors are ~colinear, so use lerp
if np.abs(dot) > DOT_THRESHOLD:
res = lerp(t, v0_copy, v1_copy)
return maybe_torch(res, is_torch)