LFM2-2.6B-a16w4_return_logits: Optimized for SiMa.ai Modalix Accuracy Benchmarking
Overview
This repository contains the LFM2-2.6B-a16w4_return_logits model, optimized and compiled for the SiMa.ai Modalix platform.
This model is compiled with --return_logits so that it can be used for Modalix accuracy benchmarking without recompiling the source model.
- Model Architecture: LFM2 (2.6B parameters)
- Quantization: Hybrid
- Prompt Processing: A16W8 (16-bit activations, 8-bit weights)
- Token Generation: A16W4 (16-bit activations, 4-bit weights)
- Maximum context length: 2048
- Source Model: LiquidAI/LFM2-2.6B
- Return logits: Enabled
Accuracy Benchmark Results
The table below compares accuracy results produced by SiMa.ai on the Modalix backend against Hugging Face backend reference results.
| Task | Version | Filter | n-shot | Metric | Direction | HF Backend Value | HF Stderr | Modalix Backend Value | Modalix Stderr | Abs. Diff |
|---|---|---|---|---|---|---|---|---|---|---|
| hellaswag | 1.0 | none | 0 | acc | higher | 0.5413 | 0.0050 | 0.532663 | 0.004979 | 0.008637 |
| hellaswag | 1.0 | none | 0 | acc_norm | higher | 0.7153 | 0.0045 | 0.703346 | 0.004558 | 0.011954 |
| piqa | 1.0 | none | 0 | acc | higher | 0.7497 | 0.0101 | 0.749728 | 0.010107 | 0.000028 |
| piqa | 1.0 | none | 0 | acc_norm | higher | 0.7514 | 0.0101 | 0.744287 | 0.010179 | 0.007113 |
| triviaqa | 3.0 | remove_whitespace | 0 | exact_match | higher | 0.2617 | 0.0033 | 0.2592 | 0.0033 | 0.002500 |
| wikitext | 2.0 | none | 0 | bits_per_byte | lower | 0.9030 | N/A | 0.948923 | N/A | 0.045923 |
| wikitext | 2.0 | none | 0 | byte_perplexity | lower | 1.8699 | N/A | 1.930431 | N/A | 0.060531 |
| wikitext | 2.0 | none | 0 | word_perplexity | lower | 28.4140 | N/A | 33.691604 | N/A | 5.277604 |
| winogrande | 1.0 | none | 0 | acc | higher | 0.6614 | 0.0133 | 0.657459 | 0.013337 | 0.003941 |
Evaluation Sample Counts
| Task | sample_len |
|---|---|
| hellaswag | 10042 |
| piqa | 1838 |
| triviaqa | 17944 |
| wikitext | 62 |
| winogrande | 1267 |
Prerequisites
To benchmark accuracy with this model, you need:
- SiMa.ai Modalix Device
- SiMa.ai CLI: Installed on your Modalix device.
- SiMa.ai Neat Runtime: Install or update the Neat Library on Modalix. The LLiMa runtime is installed as part of the Neat runtime.
- LLiMa benchmark CLI: Installed on the host machine used to launch accuracy benchmarking.
- Hugging Face CLI: Optional, for downloading the model on a host before copying it to Modalix.
Installation & Deployment
Follow these steps to deploy the model to your Modalix device.
1. Install or Update Neat Runtime
Note: This is a one-time setup. If the Neat Library is already installed on your Modalix device, you can skip this step and continue with model download.
Follow the SiMa.ai Neat getting started guide to install or update the Neat Library on your Modalix device.
The llima CLI is available on Modalix after the Neat runtime is installed. It manages precompiled GenAI models under /media/nvme/llima/models by default. Set LLIMA_MODELS_PATH to use a different model directory.
2. Download the Model
Download the compiled model assets from this repository directly to your device.
# Download the model to a local directory
llima pull LFM2-2.6B-a16w4_return_logits
Alternatively, you can download the compiled model to a Host and copy it to the Modalix device:
hf download simaai/LFM2-2.6B-a16w4_return_logits --local-dir LFM2-2.6B-a16w4_return_logits
scp -r LFM2-2.6B-a16w4_return_logits sima@<modalix-ip>:/media/nvme/llima/models/
Replace <modalix-ip> with the IP address of your Modalix device.
Expected Directory Structure:
/media/nvme/llima/
`-- models/
`-- LFM2-2.6B-a16w4_return_logits/ # The compiled model
Usage
Modalix Backend Accuracy
Run the benchmark from a host machine. The positional model_id must be the source Hugging Face model because MOLE uses its tokenizer and configuration; --board_model selects this compiled artifact on Modalix.
MODALIX_IP="<modalix-ip>"
llima-benchmark accuracy LiquidAI/LFM2-2.6B \
--backend modalix \
--output ./results/modalix \
--board_ip "$MODALIX_IP" \
--board_model LFM2-2.6B-a16w4_return_logits \
--task hellaswag piqa triviaqa wikitext winogrande
The compiled --board_model must already exist on Modalix and contain both devkit/ and elf_files/. The CLI starts the benchmark server by default. Add --board_venv_path /path/to/venv when llima is installed in a non-default virtual environment, or --no-board_start_server when connecting to a server that is already running.
Hugging Face Backend Accuracy
Run the same task suite against the source model on the host:
llima-benchmark accuracy LiquidAI/LFM2-2.6B \
--backend hf \
--output ./results/hf \
--task hellaswag piqa triviaqa wikitext winogrande
See MOLE accuracy benchmarking for the full accuracy benchmarking workflow.
Limitations
- Quantization: This model is quantized (A16W4/A16W8) for Modalix execution. Minor deviations from the full-precision source model may occur.
- Return logits: This model is compiled with
--return_logitsfor accuracy benchmarking workflows. For standard text generation deployments, use the corresponding SiMa.ai model from the Large Language Models collection.
Troubleshooting
sima-clinot found: Ensure thatsima-cliis installed on your Modalix device.llima-benchmarknot found: Ensure that the LLiMa benchmark CLI is installed on the host machine.llimanot found: Install or update the Neat Library. See Getting Started.- Modalix accuracy benchmark fails: Verify that the model was compiled with
--return_logitsand that the model directory contains bothdevkit/andelf_files/. - Model can't be found on Modalix: Verify the model directory is exactly inside
/media/nvme/llima/models/and not nested (e.g.,/media/nvme/llima/models/LFM2-2.6B-a16w4_return_logits/LFM2-2.6B-a16w4_return_logits). - Permission Denied: Ensure you have read/write permissions for the
/media/nvmedirectory.
Resources
Model tree for simaai/LFM2-2.6B-a16w4_return_logits
Base model
LiquidAI/LFM2-2.6B