Views
No views yet
Clouds are pillows waiting for a very tall bed.
I think pencils take recess home in a box. They feel like a pudding pencil.
| property | value | same as the real model |
|---|---|---|
| architecture | deepseek4 | yes |
| layers | 4 | no (real: 43) |
| sliding window | 128 | yes |
| indexer top-k | 512 | yes |
| routed experts / used | 256 / 6 | yes |
| CSA / HCA compressed cache | present | yes |
| vocabulary | 129280 | yes |
| trained context | 1048576 | yes |
| hidden size | 128 | no (real: 4096) |
| parameters | 122.18 M | no |
| file | size | use |
|---|---|---|
ralphseek-v4-flash-f32.gguf | 494 MB | F32 reference; the arm to use for byte-exact A/B work |
ralphseek-v4-flash-q8_0.gguf | 142 MB | q8_0 target |
ralphseek-v4-flash-iq4_nl.gguf | 91 MB | quick smoke arm |
ralphseek-v4-flash-mtp-f32.gguf | 223 MB | MTP draft head, F32 (see below) |
ralphseek-v4-flash-mtp-q8_0.gguf | 63 MB | MTP draft head, q8_0 |
ralphseek-v4-flash-mtp-iq4_nl.gguf | 44 MB | MTP draft head, IQ4_NL |
hf/ | 489 MB | Transformers-format source, for testing convert_hf_to_gguf.py itself |
llama-cli -m ralphseek-v4-flash-f32.gguf -p "<|User|>Tell me a fact about clouds.<|Assistant|></think>" \
-n 64 --temp 0 --special-mtp- files are a standalone NextN head for this model. Together with a target file above they provide a complete DeepSeek-V4 MTP setup in 717 MB at F32, or 135 MB if you pair the IQ4_NL target with the IQ4_NL head, which makes the draft path testable without a real checkpoint.-md, never as -m. The head is 34 tensors: one block holding nextn.{enorm,hnorm,eh_proj,shared_head_norm} plus the shared embedding, output and norm. It has no layers of its own, so loading it as the main model crashes while building the graph. That failure looks alarming and means nothing.llama-cli -m ralphseek-v4-flash-f32.gguf -md ralphseek-v4-flash-mtp-f32.gguf \
--spec-type mtp:n_max=1,p_min=0.0 -fa on \
-p "<|User|>Tell me a fact about clouds.<|Assistant|></think>" \
-n 64 --temp 0 --specialDeepseekV4ForCausalLM implementation.num_nextn_predict_layers = 1 head trained alongside this model, repacked into the mtp.0. tensor naming the converter looks for. The repack is a rename and a reorder with no numerical change; every tensor value is preserved exactly.