apetersson commited on
Commit
f07f3e1
·
verified ·
1 Parent(s): a40bb77

docs: point ds4 requirement to main

Browse files

Replace the obsolete ds4f-mxfp4 branch reference with a recent ds4 main-branch requirement. Preserve all other remote model-card content.

Files changed (1) hide show
  1. README.md +12 -13
README.md CHANGED
@@ -26,10 +26,10 @@ tags:
26
 
27
  > **Clean official weights, exact MXFP4 experts, maximum resident quality.**
28
 
29
- > **Required DS4 branch:** this model is not compatible with an older or stock
30
- > DS4 build. Its native MXFP4 tensors require the official
31
- > [`antirez/ds4` `ds4f-mxfp4` branch](https://github.com/antirez/ds4/tree/ds4f-mxfp4).
32
- > That branch runs both the target model and the supplied DSpark support model.
33
 
34
  > **Validation status:** conversion and CPU structural validation are complete.
35
  > Metal generation, DSpark acceptance, throughput, peak-memory and actual
@@ -158,19 +158,18 @@ was used only as a bounded metadata, tokenizer, tensor-order and shape template:
158
 
159
  ## Runtime requirement
160
 
161
- The required upstream runtime line is the official
162
- [`antirez/ds4` `ds4f-mxfp4` branch](https://github.com/antirez/ds4/tree/ds4f-mxfp4),
163
- not Antirez's default branch and not an older DS4 release. This is required
164
- because the main GGUF contains 30 native MXFP4 routed-expert tensors. A runtime
165
- without that branch's MXFP4 loader and Metal kernels is not compatible, even if
166
- it can parse the GGUF header.
167
 
168
- The upstream branch revision used as the base for this build was
169
- `4893e0c40fba03dbc85555faeb035799aa04e0b6`. The required runtime checkout is:
170
 
171
  ```bash
172
- git clone --branch ds4f-mxfp4 https://github.com/antirez/ds4.git
173
  cd ds4
 
 
174
  make
175
  ```
176
 
 
26
 
27
  > **Clean official weights, exact MXFP4 experts, maximum resident quality.**
28
 
29
+ > **Required DS4 version:** this model is not compatible with an older DS4
30
+ > build. Its native MXFP4 tensors require
31
+ > [a recent ds4 version from the main branch](https://github.com/antirez/ds4).
32
+ > That version runs both the target model and the supplied DSpark support model.
33
 
34
  > **Validation status:** conversion and CPU structural validation are complete.
35
  > Metal generation, DSpark acceptance, throughput, peak-memory and actual
 
158
 
159
  ## Runtime requirement
160
 
161
+ Use [a recent ds4 version from the main branch](https://github.com/antirez/ds4).
162
+ This is required because the main GGUF contains 30 native MXFP4 routed-expert
163
+ tensors. An older runtime without the MXFP4 loader and Metal kernels now in
164
+ `main` is not compatible, even if it can parse the GGUF header.
 
 
165
 
166
+ Install or update a `main`-branch checkout:
 
167
 
168
  ```bash
169
+ git clone https://github.com/antirez/ds4.git
170
  cd ds4
171
+ git switch main
172
+ git pull --ff-only
173
  make
174
  ```
175