markldn commited on
Commit
7e7495f
·
verified ·
1 Parent(s): 8c1e538

Add Q4_K_M GGUF

Browse files
Files changed (1) hide show
  1. README.md +9 -5
README.md CHANGED
@@ -14,24 +14,28 @@ tags:
14
  pipeline_tag: text-generation
15
  ---
16
 
17
- # PageStorm Research Preview 14B Full Book — Q8_0 GGUF
18
 
19
- Q8_0 GGUF quantization of
20
  [Pageshift-Entertainment/pagestorm-research-preview-14b-full-book](https://huggingface.co/Pageshift-Entertainment/pagestorm-research-preview-14b-full-book),
21
  a `ministral3` model trained to produce a full novel from a single prompt via a
22
  staged generation pipeline.
23
 
24
  ## Files
25
  - `pagestorm-research-preview-14b-full-book-Q8_0.gguf` (~14 GB)
 
26
 
27
  ## Requirements
28
  - A llama.cpp build whose runtime supports the **`mistral3`** architecture
29
  (`llm_build_mistral3` / `LLM_ARCH_MISTRAL3`). Older builds will fail to load it.
30
 
31
  ## Notes
32
- - Converted with `convert_hf_to_gguf.py --outtype q8_0`. The source `config.json`
33
- needed `original_max_position_embeddings` changed from `16384.0` to integer
34
- `16384` so the converter could write the int rope KV field.
 
 
 
35
  - The model uses a **staged** protocol with custom role headers
36
  (`<|start_header_id|>…<|stop_header_id|>`) and `<|eot_id|>` as the stage stop
37
  token — it is not a plain chat model. See the base model card and its
 
14
  pipeline_tag: text-generation
15
  ---
16
 
17
+ # PageStorm Research Preview 14B Full Book — GGUF
18
 
19
+ GGUF quantizations of
20
  [Pageshift-Entertainment/pagestorm-research-preview-14b-full-book](https://huggingface.co/Pageshift-Entertainment/pagestorm-research-preview-14b-full-book),
21
  a `ministral3` model trained to produce a full novel from a single prompt via a
22
  staged generation pipeline.
23
 
24
  ## Files
25
  - `pagestorm-research-preview-14b-full-book-Q8_0.gguf` (~14 GB)
26
+ - `pagestorm-research-preview-14b-full-book-Q4_K_M.gguf` (~7.7 GB)
27
 
28
  ## Requirements
29
  - A llama.cpp build whose runtime supports the **`mistral3`** architecture
30
  (`llm_build_mistral3` / `LLM_ARCH_MISTRAL3`). Older builds will fail to load it.
31
 
32
  ## Notes
33
+ - The Q8_0 file was converted with `convert_hf_to_gguf.py --outtype q8_0`.
34
+ - The Q4_K_M file was quantized from a temporary BF16 GGUF exported from the
35
+ original BF16 Hugging Face checkpoint, not requantized from Q8_0.
36
+ - The source `config.json` needed `original_max_position_embeddings` changed
37
+ from `16384.0` to integer `16384` so the converter could write the int rope
38
+ KV field.
39
  - The model uses a **staged** protocol with custom role headers
40
  (`<|start_header_id|>…<|stop_header_id|>`) and `<|eot_id|>` as the stage stop
41
  token — it is not a plain chat model. See the base model card and its