RhinoWithAcape commited on
Commit
729c660
·
verified ·
1 Parent(s): 1b3441b

Update build instructions

Browse files
Files changed (1) hide show
  1. README.md +2 -5
README.md CHANGED
@@ -25,12 +25,11 @@ This is the **first GGUF conversion** of [`allenai/BAR-5x7B`](https://huggingfac
25
 
26
  ## ⚠ Requires patched llama.cpp
27
 
28
- The FlexOlmo architecture is **not yet supported in upstream `llama.cpp`**. The support PR is open at:
29
 
30
- - **PR:** https://github.com/ggml-org/llama.cpp (search for "FlexOlmo")
31
  - **Fork:** https://github.com/Seraphiel102/llama.cpp/tree/flex-olmo-pr-clean
32
 
33
- **Build from the support branch:**
34
 
35
  ```bash
36
  git clone https://github.com/Seraphiel102/llama.cpp.git
@@ -40,8 +39,6 @@ cmake -B build -DGGML_CUDA=OFF
40
  cmake --build build -j --target llama-cli llama-quantize llama-completion
41
  ```
42
 
43
- Once upstream PR lands, any standard llama.cpp / Ollama install will work directly.
44
-
45
  ## What FlexOlmo is
46
 
47
  Per [`transformers.models.flex_olmo`](https://github.com/huggingface/transformers/tree/main/src/transformers/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:
 
25
 
26
  ## ⚠ Requires patched llama.cpp
27
 
28
+ The FlexOlmo architecture is **not yet supported in upstream `llama.cpp`**. To run this GGUF use the FlexOlmo support fork:
29
 
 
30
  - **Fork:** https://github.com/Seraphiel102/llama.cpp/tree/flex-olmo-pr-clean
31
 
32
+ **Build from the fork:**
33
 
34
  ```bash
35
  git clone https://github.com/Seraphiel102/llama.cpp.git
 
39
  cmake --build build -j --target llama-cli llama-quantize llama-completion
40
  ```
41
 
 
 
42
  ## What FlexOlmo is
43
 
44
  Per [`transformers.models.flex_olmo`](https://github.com/huggingface/transformers/tree/main/src/transformers/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: