Snider Virgil commited on
Commit
541e34f
·
1 Parent(s): 0d3a2ba

targets: lemer complete — all 6 quant slots verified e2e

Browse files

Added gguf Q8_0 and gguf BF16 target rows. Lemer now has six fully
paired quant variants across both inference backends, each validated
end-to-end through eval.py with its own type-and-quant-scoped canon:

mlx Q4 → LetheanNetwork/lemer-mlx vs lthn/lemer-mlx
mlx 8bit → LetheanNetwork/lemer-mlx-8bit vs lthn/lemer-mlx-8bit
mlx BF16 → LetheanNetwork/lemer-mlx-bf16 vs lthn/lemer-mlx-bf16
gguf Q4_K_M → hf.co/LetheanNetwork/lemer:Q4_K_M vs hf.co/lthn/lemer:Q4_K_M
gguf Q8_0 → hf.co/LetheanNetwork/lemer:Q8_0 vs hf.co/lthn/lemer:Q8_0
gguf BF16 → hf.co/LetheanNetwork/lemer:BF16 vs hf.co/lthn/lemer:BF16

Pre-requisite: generated Q8_0 and BF16 gguf for LetheanNetwork/lemer
earlier this session via llama.cpp convert_hf_to_gguf.py + llama-quantize,
and fixed pipeline_tag on that repo (was any-to-any, HF's llama.cpp
manifest endpoint requires image-text-to-text or text-generation).

Lemer e2e done. The family rollout for lemma/lemmy/lemrd is now a
mechanical replication of this pattern — same conversion/upload script
per model, same targets.yaml expansion, same smoke process.

Co-Authored-By: Virgil <virgil@lethean.io>

Files changed (1) hide show
  1. targets.yaml +15 -3
targets.yaml CHANGED
@@ -23,9 +23,9 @@ defaults:
23
 
24
  targets:
25
 
26
- # Lemer — Gemma 4 E2B. Three mlx quants + gguf Q4_K_M live and paired
27
- # end-to-end. Q8_0 / BF16 gguf will be added once LetheanNetwork/lemer
28
- # has the matching base quants (TODO: llama-quantize + upload).
29
 
30
  - name: lemer
31
  type: mlx
@@ -51,6 +51,18 @@ targets:
51
  base: hf.co/LetheanNetwork/lemer:Q4_K_M
52
  this: hf.co/lthn/lemer:Q4_K_M
53
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  # Lemma / Lemmy / Lemrd — pending the same treatment as lemer.
55
  # (LetheanNetwork bases in matching formats, naming alignment, etc.)
56
 
 
23
 
24
  targets:
25
 
26
+ # Lemer — Gemma 4 E2B. Six fully paired quant slots:
27
+ # mlx Q4 / 8bit / BF16
28
+ # gguf Q4_K_M / Q8_0 / BF16
29
 
30
  - name: lemer
31
  type: mlx
 
51
  base: hf.co/LetheanNetwork/lemer:Q4_K_M
52
  this: hf.co/lthn/lemer:Q4_K_M
53
 
54
+ - name: lemer
55
+ type: gguf
56
+ quant: Q8_0
57
+ base: hf.co/LetheanNetwork/lemer:Q8_0
58
+ this: hf.co/lthn/lemer:Q8_0
59
+
60
+ - name: lemer
61
+ type: gguf
62
+ quant: BF16
63
+ base: hf.co/LetheanNetwork/lemer:BF16
64
+ this: hf.co/lthn/lemer:BF16
65
+
66
  # Lemma / Lemmy / Lemrd — pending the same treatment as lemer.
67
  # (LetheanNetwork bases in matching formats, naming alignment, etc.)
68