Views
No views yet
allenai/BAR-5x7B, the largest member of AllenAI's BAR-family Mixture-of-Experts models released on 2026-04-19 based on the new FlexOlmo architecture.llama.cpp. To run this GGUF use the FlexOlmo support fork:1git clone https://github.com/Seraphiel102/llama.cpp.git
2cd llama.cpp
3git checkout flex-olmo-pr-clean
4cmake -B build -DGGML_CUDA=OFF
5cmake --build build -j --target llama-cli llama-quantize llama-completiontransformers.models.flex_olmo, FlexOlmoDecoderLayer is Olmo2's hybrid post-norm decoder layer with the dense FFN swapped for OlmoE-style top-k MoE routing. Specifically:post_attention_layernorm and post_feedforward_layernorm (post-norm pattern, no input_layernorm)| Quant | Size | Notes |
|---|---|---|
BAR-5x7B.Q4_K_M.gguf | 14 GB | recommended, fits 16GB VRAM at small context |
| (more quants pending) |
1./build/bin/llama-completion \
2 -m BAR-5x7B.Q4_K_M.gguf \
3 -p "The 5 experts in BAR-5x7B are " \
4 -n 100allenai/BAR-5x7Bconvert_hf_to_gguf.py patch from the support PR