shibatch commited on
Commit
623df43
·
verified ·
1 Parent(s): 9201b3f

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -65,3 +65,4 @@ gemma4-random-model/gguf-q4_0/gemma4-random-model-Q4_0.gguf filter=lfs diff=lfs
65
  qwen3-random-model/gguf-q4_0/qwen3-random-model-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
66
  smollm3-random-model/gguf-q4_0/smollm3-random-model-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
67
  gemma4-random-model/gguf-q4_k/gemma4-random-model-Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
 
 
65
  qwen3-random-model/gguf-q4_0/qwen3-random-model-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
66
  smollm3-random-model/gguf-q4_0/smollm3-random-model-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
67
  gemma4-random-model/gguf-q4_k/gemma4-random-model-Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
68
+ gemma3-random-model/gguf-q4_k/gemma3-random-model-Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
ARCHITECTURE_RANDOM_MODELS_REPORT.json CHANGED
@@ -51,6 +51,24 @@
51
  "Q4_0": 29
52
  },
53
  "validation": "passed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  }
55
  ],
56
  "llama_cpp_commit": "40b740ad05c531b9d57aca6698c3ed553a9e784c",
 
51
  "Q4_0": 29
52
  },
53
  "validation": "passed"
54
+ },
55
+ {
56
+ "architecture": "gemma3",
57
+ "case": "gemma3-random-model",
58
+ "eog_token_ids": [
59
+ 106
60
+ ],
61
+ "gguf_quantization": "Q4_K",
62
+ "gguf_sha256": "68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5",
63
+ "hf_dtype": "bfloat16",
64
+ "hf_sha256": "46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf",
65
+ "parameter_count": 5938176,
66
+ "tensor_type_histogram": {
67
+ "F32": 37,
68
+ "Q4_K": 38,
69
+ "Q6_K": 5
70
+ },
71
+ "validation": "passed"
72
  }
73
  ],
74
  "llama_cpp_commit": "40b740ad05c531b9d57aca6698c3ed553a9e784c",
README.md CHANGED
@@ -6,6 +6,7 @@ size_categories:
6
  tags:
7
  - llama
8
  - gemma4
 
9
  - qwen3
10
  - smollm3
11
  - transformers
@@ -18,7 +19,7 @@ tags:
18
 
19
  # Deterministic Random Models
20
 
21
- This dataset contains ten small, deterministic language-model fixtures for
22
  model-format, loader, inference, compatibility, and conformance testing. They
23
  are not trained models and must not be used for language-model quality
24
  evaluation.
@@ -40,9 +41,10 @@ checkpoint weights are included.
40
  | `gemma4-random-model` | Gemma 4 | 6,036,608 | BF16 | Q4_K | five-local/one-global attention schedule |
41
  | `qwen3-random-model` | Qwen 3 | 508,800 | BF16 | Q4_0 | wide Q projection and Q/K head norms |
42
  | `smollm3-random-model` | SmolLM3 | 4,917,504 | BF16 | Q4_0 | three-RoPE/one-no-RoPE layer schedule |
 
43
 
44
  The seven Llama cases are derived from real Hugging Face configuration files by
45
- a preservation-first shrinker. Gemma 4, Qwen 3, and SmolLM3 retain
46
  architecture-specific reduced geometries that preserve important
47
  ratios, tensor inventories, and layer schedules observed in locally downloaded
48
  upstream GGUF models. Published case names use `random-model` rather than
@@ -87,7 +89,7 @@ The architecture-specific cases use:
87
  `-- metadata.json
88
  ```
89
 
90
- `manifest.json` is the machine-readable index of all ten model packages and
91
  their SHA-256 hashes and sizes.
92
 
93
  ## Synthetic weights and tokenizers
@@ -118,7 +120,7 @@ F32 or BF16 reference exactly.
118
 
119
  ## Reproducibility and scope
120
 
121
- The Hugging Face weights, configs, and GGUF outputs for Gemma 4, Qwen 3, and SmolLM3 were
122
  independently regenerated and found byte-identical. The Llama cases retain their
123
  source revisions, source-config hashes, shrink decisions, and generation
124
  provenance in each case directory.
 
6
  tags:
7
  - llama
8
  - gemma4
9
+ - gemma3
10
  - qwen3
11
  - smollm3
12
  - transformers
 
19
 
20
  # Deterministic Random Models
21
 
22
+ This dataset contains eleven small, deterministic language-model fixtures for
23
  model-format, loader, inference, compatibility, and conformance testing. They
24
  are not trained models and must not be used for language-model quality
25
  evaluation.
 
41
  | `gemma4-random-model` | Gemma 4 | 6,036,608 | BF16 | Q4_K | five-local/one-global attention schedule |
42
  | `qwen3-random-model` | Qwen 3 | 508,800 | BF16 | Q4_0 | wide Q projection and Q/K head norms |
43
  | `smollm3-random-model` | SmolLM3 | 4,917,504 | BF16 | Q4_0 | three-RoPE/one-no-RoPE layer schedule |
44
+ | `gemma3-random-model` | Gemma 3 | 5,938,176 | BF16 | Q4_K | five-local/one-global attention schedule, EOS 106 |
45
 
46
  The seven Llama cases are derived from real Hugging Face configuration files by
47
+ a preservation-first shrinker. Gemma 4, Gemma 3, Qwen 3, and SmolLM3 retain
48
  architecture-specific reduced geometries that preserve important
49
  ratios, tensor inventories, and layer schedules observed in locally downloaded
50
  upstream GGUF models. Published case names use `random-model` rather than
 
89
  `-- metadata.json
90
  ```
91
 
92
+ `manifest.json` is the machine-readable index of all eleven model packages and
93
  their SHA-256 hashes and sizes.
94
 
95
  ## Synthetic weights and tokenizers
 
120
 
121
  ## Reproducibility and scope
122
 
123
+ The Hugging Face weights, configs, and GGUF outputs for Gemma 4, Gemma 3, Qwen 3, and SmolLM3 were
124
  independently regenerated and found byte-identical. The Llama cases retain their
125
  source revisions, source-config hashes, shrink decisions, and generation
126
  provenance in each case directory.
SHA256SUMS CHANGED
@@ -1,7 +1,7 @@
1
- d17b37c112047f3ac47f54634c1a59da55e179b4fb176ad596ecc94240750006 ARCHITECTURE_RANDOM_MODELS_REPORT.json
2
  18ec0cdad98853d7f10381790713f0b3190bd4f24962594bf576e11fdb07f76f GGUF_Q4_K_M_ADDED_FOUR_REPORT.json
3
  695036ee0e223d3d79170fb3a0f795eb88f6337fb2e29c18f0b549979c057208 GGUF_Q4_K_M_REPORT.json
4
- fb3008e24a0fecc2bb0cb72b27770db78f72bc481dc086b8080c89f09e419816 README.md
5
  95d67a407dc96839250fe23e85e0a5bab9d355ee463b0c87bf9e33164c952b52 REPORT.md
6
  02130c5ef4fe4e00bf26cc6e0eb288b90916acf827031bf572ffc02a48d5f3f0 deepseek-coder/case.json
7
  616662945b2382e3c4ef36c05b40ebacea17e2e16fa3a723b7fd49eb5d0e9fdd deepseek-coder/config-diff.json
@@ -22,6 +22,20 @@ b80f4edf3204563fd78e3c95498aa4ceb9af1770f52869c638d33be9124a43a5 deepseek-coder
22
  603a68ffd4df8d0b01492da00fcd7b7386f7a8bbe90e92b81b82516a9231fbfb deepseek-coder/tokenizer/tokenizer_config.json
23
  7b1258e1304c5f09f3bc64cd4b569e7ddfa55a062c0581d0e5cb1a3d7a17fcc8 deepseek-coder/tokenizer/vocabulary.json
24
  aa20ff35795ac323bbdbc81c292f0fa74bb81f9026b88cd01c40c4d81e428d8c deepseek-coder/validation.json
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  4d463e831b4df46925f7ed82f898a9212d004882dacefc7012171254a70e52ed gemma4-random-model/CONFIG_DECISION.md
26
  5c330d499055016556a88ee42b398fac5fa6fa7706f68cad2c4aa8e6d7286f1c gemma4-random-model/gguf-q4_k/convert.log
27
  3ce6309aa4221289441b198ab63cd6c0d03075ba183ea1990001313c99d6e845 gemma4-random-model/gguf-q4_k/gemma4-random-model-Q4_K.gguf
@@ -73,7 +87,7 @@ f003d32e36ddc9d7c7a50c186da5c544b2828a0d04ca62aeac741d765727a635 livekit-turn-d
73
  564a5f0d3380d83d0ffcfa509a5e5369c0610f586cb6b3d0d45ccaee76610327 livekit-turn-detector/tokenizer/tokenizer_config.json
74
  7b1258e1304c5f09f3bc64cd4b569e7ddfa55a062c0581d0e5cb1a3d7a17fcc8 livekit-turn-detector/tokenizer/vocabulary.json
75
  391312ee129392e2b35b6a238593ca5ddff3dd51c6c324135f1bb0114be1e068 livekit-turn-detector/validation.json
76
- d3c192b83c78f0d46d46835f0e4e201dd80755dde5fd39016a051b5133b36410 manifest.json
77
  047c4545232dc055c2c7e4a30a70c22e0e75e9e777e539732128f65c32b0c1cb minicpm5/case.json
78
  282a55aae55b59573109fe37222197f298600ad691573bcd84ea5d4dc1afcc0a minicpm5/config-diff.json
79
  d088266a01cd2f9a6107877932d6af9f65e6d00202292226eab76af8ea0e889f minicpm5/gguf/metadata.json
 
1
+ 23c1d84934c48197ac11e4c10cc8daebebf0207b177e24506a5ac603739d97aa ARCHITECTURE_RANDOM_MODELS_REPORT.json
2
  18ec0cdad98853d7f10381790713f0b3190bd4f24962594bf576e11fdb07f76f GGUF_Q4_K_M_ADDED_FOUR_REPORT.json
3
  695036ee0e223d3d79170fb3a0f795eb88f6337fb2e29c18f0b549979c057208 GGUF_Q4_K_M_REPORT.json
4
+ 48dfe7e04721f8e95938d3151f26e852e3bbd482a1f2e2ba10b932c181673b99 README.md
5
  95d67a407dc96839250fe23e85e0a5bab9d355ee463b0c87bf9e33164c952b52 REPORT.md
6
  02130c5ef4fe4e00bf26cc6e0eb288b90916acf827031bf572ffc02a48d5f3f0 deepseek-coder/case.json
7
  616662945b2382e3c4ef36c05b40ebacea17e2e16fa3a723b7fd49eb5d0e9fdd deepseek-coder/config-diff.json
 
22
  603a68ffd4df8d0b01492da00fcd7b7386f7a8bbe90e92b81b82516a9231fbfb deepseek-coder/tokenizer/tokenizer_config.json
23
  7b1258e1304c5f09f3bc64cd4b569e7ddfa55a062c0581d0e5cb1a3d7a17fcc8 deepseek-coder/tokenizer/vocabulary.json
24
  aa20ff35795ac323bbdbc81c292f0fa74bb81f9026b88cd01c40c4d81e428d8c deepseek-coder/validation.json
25
+ 0c39eb97dd1a63cb6b948799c00de65712451f629cf4a19d04eb790cfdfb88fc gemma3-random-model/CONFIG_DECISION.md
26
+ 8f3d38791f1a3477d3585fb572eca5952b4c2f30588f23c69d7f24aa2397ccf5 gemma3-random-model/gguf-q4_k/convert.log
27
+ 68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5 gemma3-random-model/gguf-q4_k/gemma3-random-model-Q4_K.gguf
28
+ 83d287b61ff13673e657d91301e047f4296ed19b6914574328a913cf2e126183 gemma3-random-model/gguf-q4_k/quantize.log
29
+ 7f5d3204aea64ffbbf686ea85afd77ba4c7d86d9af11b67e65150f5bf8b3c774 gemma3-random-model/hf-bf16/config.json
30
+ 3e4b35955db771320f4596c561ba812867070e6666cf2f01dcf439df56847e1a gemma3-random-model/hf-bf16/generation_config.json
31
+ 46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf gemma3-random-model/hf-bf16/model.safetensors
32
+ fb6670d673ef1a0d347ac6066d14aecf0992741f93df2e6f30cc2feed2d462fd gemma3-random-model/hf-bf16/tokenizer.json
33
+ 47ce326acdb871124ef8fa106238d0916ffcf4ea1bf3e10f03a512c729dfcbcc gemma3-random-model/hf-bf16/tokenizer.model
34
+ d0fab7832fecaac8554eaebfad305d55655cc79b3404eb9a7b0a4fc9dce08a01 gemma3-random-model/hf-bf16/tokenizer_config.json
35
+ 3b8ff49c5af519e27c83c81048862e7cf05b5dc6da558ab16cb1db8f98cb9995 gemma3-random-model/metadata.json
36
+ d380b7b0d97842cccb6dfe1e7c94baae4a31d362ea1996653e83c839f450b075 gemma3-random-model/reference/gguf-native.json
37
+ b9a605c3702c2d3da0cd2ee00e5d1defd9b2e06be80aaa9b9809baac411a24e6 gemma3-random-model/reference/hf-outputs.safetensors
38
+ 719a2f5ea966e92e42ebcc43dd73f0714b5d740c9f426d22c942dbb1e7efb6ab gemma3-random-model/reference/inputs.json
39
  4d463e831b4df46925f7ed82f898a9212d004882dacefc7012171254a70e52ed gemma4-random-model/CONFIG_DECISION.md
40
  5c330d499055016556a88ee42b398fac5fa6fa7706f68cad2c4aa8e6d7286f1c gemma4-random-model/gguf-q4_k/convert.log
41
  3ce6309aa4221289441b198ab63cd6c0d03075ba183ea1990001313c99d6e845 gemma4-random-model/gguf-q4_k/gemma4-random-model-Q4_K.gguf
 
87
  564a5f0d3380d83d0ffcfa509a5e5369c0610f586cb6b3d0d45ccaee76610327 livekit-turn-detector/tokenizer/tokenizer_config.json
88
  7b1258e1304c5f09f3bc64cd4b569e7ddfa55a062c0581d0e5cb1a3d7a17fcc8 livekit-turn-detector/tokenizer/vocabulary.json
89
  391312ee129392e2b35b6a238593ca5ddff3dd51c6c324135f1bb0114be1e068 livekit-turn-detector/validation.json
90
+ c7f352d7309177812e8db6def6caa5f336b4b4130b9950a81753a7f7ee2ad2e9 manifest.json
91
  047c4545232dc055c2c7e4a30a70c22e0e75e9e777e539732128f65c32b0c1cb minicpm5/case.json
92
  282a55aae55b59573109fe37222197f298600ad691573bcd84ea5d4dc1afcc0a minicpm5/config-diff.json
93
  d088266a01cd2f9a6107877932d6af9f65e6d00202292226eab76af8ea0e889f minicpm5/gguf/metadata.json
gemma3-random-model/CONFIG_DECISION.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gemma 3 random-model configuration decision
2
+
3
+ The source is `gemma-3-4b-it-Q4_K_M.gguf`. It identifies itself as
4
+ `general.architecture = gemma3` and uses 34 layers, hidden width 2560, FFN width
5
+ 10240, eight query heads, four KV heads, head dimension 256, sliding window
6
+ 1024, context 131072, linear RoPE scaling factor 8, and tied embeddings.
7
+
8
+ The selected reduced geometry is six layers, hidden width 256, FFN width 1024,
9
+ four query heads, two KV heads, head dimension 64, sliding window 64, context
10
+ 128, and vocabulary 128. It preserves the FFN ratio of four, GQA ratio of two,
11
+ one complete five-sliding/one-full attention period, linear RoPE scaling, RMS
12
+ epsilon, four norm roles per layer, Q/K head norms, and tied embeddings.
13
+
14
+ The source EOS token ID is 106 and remains 106. The synthetic HF tokenizer and
15
+ converter SentencePiece tokenizer both cover IDs `0..127` and represent
16
+ PAD/BOS/UNK/EOS as `0/2/3/106`. They are test tokenizers, not copies of the
17
+ source linguistic vocabulary.
18
+
19
+ All matrix quantization axes used by the reduced model are divisible by 256.
20
+ The retained GGUF uses llama.cpp `Q4_K`, an alias for the mixed Q4_K_M profile,
21
+ without `--pure`. Actual tensor types are recorded after generation.
22
+
23
+ The official Transformers 5.15.0 `Gemma3ForCausalLM` construction contains
24
+ 5,938,176 trainable parameters. Norm parameters are initialized to zero because
25
+ Gemma3 RMSNorm applies `1 + weight`; other one-dimensional parameters use their
26
+ model defaults and matrices use the deterministic tlfloat LCG64 equation.
gemma3-random-model/gguf-q4_k/convert.log ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ INFO:hf-to-gguf:Loading model: hf-bf16
2
+ INFO:hf-to-gguf:Model architecture: Gemma3ForCausalLM
3
+ INFO:hf-to-gguf:gguf: indexing model part 'model.safetensors'
4
+ INFO:gguf.gguf_writer:gguf: This GGUF file is for Little Endian only
5
+ INFO:hf-to-gguf:Exporting model...
6
+ INFO:hf-to-gguf:token_embd.weight, torch.bfloat16 --> F32, shape = {256, 128}
7
+ INFO:hf-to-gguf:blk.0.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
8
+ INFO:hf-to-gguf:blk.0.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
9
+ INFO:hf-to-gguf:blk.0.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
10
+ INFO:hf-to-gguf:blk.0.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
11
+ INFO:hf-to-gguf:blk.0.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
12
+ INFO:hf-to-gguf:blk.0.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
13
+ INFO:hf-to-gguf:blk.0.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
14
+ INFO:hf-to-gguf:blk.0.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
15
+ INFO:hf-to-gguf:blk.0.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
16
+ INFO:hf-to-gguf:blk.0.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
17
+ INFO:hf-to-gguf:blk.0.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
18
+ INFO:hf-to-gguf:blk.0.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
19
+ INFO:hf-to-gguf:blk.0.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
20
+ INFO:hf-to-gguf:blk.1.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
21
+ INFO:hf-to-gguf:blk.1.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
22
+ INFO:hf-to-gguf:blk.1.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
23
+ INFO:hf-to-gguf:blk.1.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
24
+ INFO:hf-to-gguf:blk.1.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
25
+ INFO:hf-to-gguf:blk.1.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
26
+ INFO:hf-to-gguf:blk.1.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
27
+ INFO:hf-to-gguf:blk.1.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
28
+ INFO:hf-to-gguf:blk.1.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
29
+ INFO:hf-to-gguf:blk.1.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
30
+ INFO:hf-to-gguf:blk.1.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
31
+ INFO:hf-to-gguf:blk.1.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
32
+ INFO:hf-to-gguf:blk.1.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
33
+ INFO:hf-to-gguf:blk.2.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
34
+ INFO:hf-to-gguf:blk.2.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
35
+ INFO:hf-to-gguf:blk.2.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
36
+ INFO:hf-to-gguf:blk.2.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
37
+ INFO:hf-to-gguf:blk.2.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
38
+ INFO:hf-to-gguf:blk.2.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
39
+ INFO:hf-to-gguf:blk.2.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
40
+ INFO:hf-to-gguf:blk.2.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
41
+ INFO:hf-to-gguf:blk.2.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
42
+ INFO:hf-to-gguf:blk.2.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
43
+ INFO:hf-to-gguf:blk.2.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
44
+ INFO:hf-to-gguf:blk.2.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
45
+ INFO:hf-to-gguf:blk.2.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
46
+ INFO:hf-to-gguf:blk.3.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
47
+ INFO:hf-to-gguf:blk.3.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
48
+ INFO:hf-to-gguf:blk.3.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
49
+ INFO:hf-to-gguf:blk.3.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
50
+ INFO:hf-to-gguf:blk.3.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
51
+ INFO:hf-to-gguf:blk.3.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
52
+ INFO:hf-to-gguf:blk.3.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
53
+ INFO:hf-to-gguf:blk.3.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
54
+ INFO:hf-to-gguf:blk.3.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
55
+ INFO:hf-to-gguf:blk.3.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
56
+ INFO:hf-to-gguf:blk.3.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
57
+ INFO:hf-to-gguf:blk.3.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
58
+ INFO:hf-to-gguf:blk.3.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
59
+ INFO:hf-to-gguf:blk.4.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
60
+ INFO:hf-to-gguf:blk.4.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
61
+ INFO:hf-to-gguf:blk.4.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
62
+ INFO:hf-to-gguf:blk.4.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
63
+ INFO:hf-to-gguf:blk.4.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
64
+ INFO:hf-to-gguf:blk.4.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
65
+ INFO:hf-to-gguf:blk.4.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
66
+ INFO:hf-to-gguf:blk.4.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
67
+ INFO:hf-to-gguf:blk.4.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
68
+ INFO:hf-to-gguf:blk.4.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
69
+ INFO:hf-to-gguf:blk.4.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
70
+ INFO:hf-to-gguf:blk.4.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
71
+ INFO:hf-to-gguf:blk.4.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
72
+ INFO:hf-to-gguf:blk.5.attn_norm.weight, torch.bfloat16 --> F32, shape = {256}
73
+ INFO:hf-to-gguf:blk.5.ffn_down.weight, torch.bfloat16 --> F32, shape = {1024, 256}
74
+ INFO:hf-to-gguf:blk.5.ffn_gate.weight, torch.bfloat16 --> F32, shape = {256, 1024}
75
+ INFO:hf-to-gguf:blk.5.ffn_up.weight, torch.bfloat16 --> F32, shape = {256, 1024}
76
+ INFO:hf-to-gguf:blk.5.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {256}
77
+ INFO:hf-to-gguf:blk.5.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {256}
78
+ INFO:hf-to-gguf:blk.5.ffn_norm.weight, torch.bfloat16 --> F32, shape = {256}
79
+ INFO:hf-to-gguf:blk.5.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {64}
80
+ INFO:hf-to-gguf:blk.5.attn_k.weight, torch.bfloat16 --> F32, shape = {256, 128}
81
+ INFO:hf-to-gguf:blk.5.attn_output.weight, torch.bfloat16 --> F32, shape = {256, 256}
82
+ INFO:hf-to-gguf:blk.5.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {64}
83
+ INFO:hf-to-gguf:blk.5.attn_q.weight, torch.bfloat16 --> F32, shape = {256, 256}
84
+ INFO:hf-to-gguf:blk.5.attn_v.weight, torch.bfloat16 --> F32, shape = {256, 128}
85
+ INFO:hf-to-gguf:output_norm.weight, torch.bfloat16 --> F32, shape = {256}
86
+ INFO:hf-to-gguf:Set meta model
87
+ INFO:hf-to-gguf:Set model parameters
88
+ INFO:hf-to-gguf:gguf: context length = 128
89
+ INFO:hf-to-gguf:gguf: embedding length = 256
90
+ INFO:hf-to-gguf:gguf: feed forward length = 1024
91
+ INFO:hf-to-gguf:gguf: head count = 4
92
+ INFO:hf-to-gguf:gguf: key-value head count = 2
93
+ INFO:hf-to-gguf:gguf: rope scaling type = LINEAR
94
+ INFO:hf-to-gguf:gguf: rope theta = 1000000.0
95
+ INFO:hf-to-gguf:gguf: rope theta swa = 10000.0
96
+ INFO:hf-to-gguf:gguf: rms norm epsilon = 1e-06
97
+ INFO:hf-to-gguf:gguf: file type = 0
98
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.context_length', overwriting it with new value 128 of type UINT32
99
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.attention.head_count', overwriting it with new value 4 of type UINT32
100
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.attention.layer_norm_rms_epsilon', overwriting it with new value 1e-06 of type FLOAT32
101
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.attention.key_length', overwriting it with new value 64 of type UINT32
102
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.attention.value_length', overwriting it with new value 64 of type UINT32
103
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.rope.freq_base', overwriting it with new value 1000000.0 of type FLOAT32
104
+ WARNING:gguf.gguf_writer:Duplicated key name 'gemma3.attention.head_count_kv', overwriting it with new value 2 of type UINT32
105
+ INFO:hf-to-gguf:Set model quantization version
106
+ INFO:hf-to-gguf:Set model tokenizer
107
+ INFO:gguf.vocab:Setting special token type bos to 2
108
+ INFO:gguf.vocab:Setting special token type eos to 106
109
+ INFO:gguf.vocab:Setting special token type unk to 3
110
+ INFO:gguf.vocab:Setting special token type pad to 0
111
+ INFO:gguf.vocab:Setting special token type mask to 4
112
+ INFO:gguf.gguf_writer:Writing the following files:
113
+ INFO:gguf.gguf_writer:/home/codex/tmp/gemma3-q4k-work-20260813/gemma3-random-model-F32.gguf: n_tensors = 80, total_size = 23.8M
114
+
115
+ Writing: 0%| | 0.00/23.8M [00:00<?, ?byte/s]
116
+ Writing: 100%|██████████| 23.8M/23.8M [00:00<00:00, 1.54Gbyte/s]
117
+ INFO:hf-to-gguf:Model successfully exported to /home/codex/tmp/gemma3-q4k-work-20260813/gemma3-random-model-F32.gguf
gemma3-random-model/gguf-q4_k/gemma3-random-model-Q4_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5
3
+ size 3533984
gemma3-random-model/gguf-q4_k/quantize.log ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ llama_print_build_info: build = 0 (unknown)
2
+ llama_print_build_info: built with Clang 21.1.8 for Linux x86_64
3
+ llama_quantize: quantizing '/home/codex/tmp/gemma3-q4k-work-20260813/gemma3-random-model-F32.gguf' to '/home/codex/conf_track/artifacts/gemma3-v0/gemma3-random-model/gguf-q4_k/gemma3-random-model-Q4_K.gguf' as Q4_K
4
+ llama_model_loader: loaded meta data with 31 key-value pairs and 80 tensors from /home/codex/tmp/gemma3-q4k-work-20260813/gemma3-random-model-F32.gguf (version GGUF V3 (latest))
5
+ llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.
6
+ llama_model_loader: - kv 0: general.architecture str = gemma3
7
+ llama_model_loader: - kv 1: general.type str = model
8
+ llama_model_loader: - kv 2: general.name str = Gemma 3 Random Model
9
+ llama_model_loader: - kv 3: general.size_label str = 5.9M
10
+ llama_model_loader: - kv 4: gemma3.block_count u32 = 6
11
+ llama_model_loader: - kv 5: gemma3.context_length u32 = 128
12
+ llama_model_loader: - kv 6: gemma3.embedding_length u32 = 256
13
+ llama_model_loader: - kv 7: gemma3.feed_forward_length u32 = 1024
14
+ llama_model_loader: - kv 8: gemma3.attention.head_count u32 = 4
15
+ llama_model_loader: - kv 9: gemma3.attention.head_count_kv u32 = 2
16
+ llama_model_loader: - kv 10: gemma3.rope.scaling.type str = linear
17
+ llama_model_loader: - kv 11: gemma3.rope.scaling.factor f32 = 8.000000
18
+ llama_model_loader: - kv 12: gemma3.rope.freq_base f32 = 1000000.000000
19
+ llama_model_loader: - kv 13: gemma3.rope.freq_base_swa f32 = 10000.000000
20
+ llama_model_loader: - kv 14: gemma3.attention.layer_norm_rms_epsilon f32 = 0.000001
21
+ llama_model_loader: - kv 15: gemma3.attention.key_length u32 = 64
22
+ llama_model_loader: - kv 16: gemma3.attention.value_length u32 = 64
23
+ llama_model_loader: - kv 17: general.file_type u32 = 0
24
+ llama_model_loader: - kv 18: gemma3.attention.sliding_window u32 = 64
25
+ llama_model_loader: - kv 19: general.quantization_version u32 = 2
26
+ llama_model_loader: - kv 20: tokenizer.ggml.model str = llama
27
+ llama_model_loader: - kv 21: tokenizer.ggml.pre str = default
28
+ llama_model_loader: - kv 22: tokenizer.ggml.tokens arr[str,128] = ["<pad>", "de", "<bos>", "<unk>", "om...
29
+ llama_model_loader: - kv 23: tokenizer.ggml.scores arr[f32,128] = [0.000000, -0.000000, 0.000000, 0.000...
30
+ llama_model_loader: - kv 24: tokenizer.ggml.token_type arr[i32,128] = [3, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, ...
31
+ llama_model_loader: - kv 25: tokenizer.ggml.bos_token_id u32 = 2
32
+ llama_model_loader: - kv 26: tokenizer.ggml.eos_token_id u32 = 106
33
+ llama_model_loader: - kv 27: tokenizer.ggml.unknown_token_id u32 = 3
34
+ llama_model_loader: - kv 28: tokenizer.ggml.padding_token_id u32 = 0
35
+ llama_model_loader: - kv 29: tokenizer.ggml.mask_token_id u32 = 4
36
+ llama_model_loader: - kv 30: tokenizer.ggml.add_space_prefix bool = false
37
+ llama_model_loader: - type f32: 80 tensors
38
+ [ 1/ 80] output_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
39
+ [ 2/ 80] token_embd.weight - [ 256, 128, 1, 1], type = f32, converting to q6_K .. size = 0.12 MiB -> 0.03 MiB
40
+ [ 3/ 80] blk.0.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
41
+ [ 4/ 80] blk.0.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
42
+ [ 5/ 80] blk.0.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
43
+ [ 6/ 80] blk.0.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
44
+ [ 7/ 80] blk.0.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
45
+ [ 8/ 80] blk.0.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
46
+ [ 9/ 80] blk.0.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
47
+ [ 10/ 80] blk.0.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
48
+ [ 11/ 80] blk.0.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
49
+ [ 12/ 80] blk.0.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
50
+ [ 13/ 80] blk.0.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
51
+ [ 14/ 80] blk.0.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
52
+ [ 15/ 80] blk.0.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
53
+ [ 16/ 80] blk.1.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
54
+ [ 17/ 80] blk.1.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
55
+ [ 18/ 80] blk.1.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
56
+ [ 19/ 80] blk.1.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
57
+ [ 20/ 80] blk.1.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
58
+ [ 21/ 80] blk.1.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
59
+ [ 22/ 80] blk.1.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
60
+ [ 23/ 80] blk.1.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
61
+ [ 24/ 80] blk.1.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
62
+ [ 25/ 80] blk.1.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
63
+ [ 26/ 80] blk.1.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
64
+ [ 27/ 80] blk.1.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
65
+ [ 28/ 80] blk.1.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
66
+ [ 29/ 80] blk.2.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
67
+ [ 30/ 80] blk.2.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
68
+ [ 31/ 80] blk.2.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
69
+ [ 32/ 80] blk.2.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
70
+ [ 33/ 80] blk.2.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
71
+ [ 34/ 80] blk.2.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
72
+ [ 35/ 80] blk.2.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q6_K .. size = 0.12 MiB -> 0.03 MiB
73
+ [ 36/ 80] blk.2.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q6_K .. size = 1.00 MiB -> 0.21 MiB
74
+ [ 37/ 80] blk.2.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
75
+ [ 38/ 80] blk.2.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
76
+ [ 39/ 80] blk.2.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
77
+ [ 40/ 80] blk.2.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
78
+ [ 41/ 80] blk.2.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
79
+ [ 42/ 80] blk.3.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
80
+ [ 43/ 80] blk.3.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
81
+ [ 44/ 80] blk.3.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
82
+ [ 45/ 80] blk.3.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
83
+ [ 46/ 80] blk.3.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
84
+ [ 47/ 80] blk.3.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
85
+ [ 48/ 80] blk.3.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
86
+ [ 49/ 80] blk.3.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
87
+ [ 50/ 80] blk.3.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
88
+ [ 51/ 80] blk.3.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
89
+ [ 52/ 80] blk.3.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
90
+ [ 53/ 80] blk.3.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
91
+ [ 54/ 80] blk.3.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
92
+ [ 55/ 80] blk.4.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
93
+ [ 56/ 80] blk.4.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
94
+ [ 57/ 80] blk.4.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
95
+ [ 58/ 80] blk.4.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
96
+ [ 59/ 80] blk.4.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
97
+ [ 60/ 80] blk.4.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
98
+ [ 61/ 80] blk.4.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
99
+ [ 62/ 80] blk.4.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
100
+ [ 63/ 80] blk.4.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
101
+ [ 64/ 80] blk.4.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
102
+ [ 65/ 80] blk.4.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
103
+ [ 66/ 80] blk.4.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
104
+ [ 67/ 80] blk.4.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
105
+ [ 68/ 80] blk.5.attn_k.weight - [ 256, 128, 1, 1], type = f32, converting to q4_K .. size = 0.12 MiB -> 0.02 MiB
106
+ [ 69/ 80] blk.5.attn_k_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
107
+ [ 70/ 80] blk.5.attn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
108
+ [ 71/ 80] blk.5.attn_output.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
109
+ [ 72/ 80] blk.5.attn_q.weight - [ 256, 256, 1, 1], type = f32, converting to q4_K .. size = 0.25 MiB -> 0.04 MiB
110
+ [ 73/ 80] blk.5.attn_q_norm.weight - [ 64, 1, 1, 1], type = f32, size = 0.000 MiB
111
+ [ 74/ 80] blk.5.attn_v.weight - [ 256, 128, 1, 1], type = f32, converting to q6_K .. size = 0.12 MiB -> 0.03 MiB
112
+ [ 75/ 80] blk.5.ffn_down.weight - [ 1024, 256, 1, 1], type = f32, converting to q6_K .. size = 1.00 MiB -> 0.21 MiB
113
+ [ 76/ 80] blk.5.ffn_gate.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
114
+ [ 77/ 80] blk.5.ffn_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
115
+ [ 78/ 80] blk.5.ffn_up.weight - [ 256, 1024, 1, 1], type = f32, converting to q4_K .. size = 1.00 MiB -> 0.14 MiB
116
+ [ 79/ 80] blk.5.post_attention_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
117
+ [ 80/ 80] blk.5.post_ffw_norm.weight - [ 256, 1, 1, 1], type = f32, size = 0.001 MiB
118
+ llama_model_quantize_impl: model size = 22.65 MiB (32.00 BPW)
119
+ llama_model_quantize_impl: quant size = 3.36 MiB (4.75 BPW)
120
+
121
+ llama_quantize: quantize time = 61.30 ms
122
+ llama_quantize: total time = 61.30 ms
gemma3-random-model/hf-bf16/config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_sliding_window_pattern": 6,
3
+ "architectures": [
4
+ "Gemma3ForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "attn_logit_softcapping": null,
9
+ "bos_token_id": 2,
10
+ "dtype": "bfloat16",
11
+ "eos_token_id": 106,
12
+ "final_logit_softcapping": null,
13
+ "head_dim": 64,
14
+ "hidden_activation": "gelu_pytorch_tanh",
15
+ "hidden_size": 256,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 1024,
18
+ "layer_types": [
19
+ "sliding_attention",
20
+ "sliding_attention",
21
+ "sliding_attention",
22
+ "sliding_attention",
23
+ "sliding_attention",
24
+ "full_attention"
25
+ ],
26
+ "max_position_embeddings": 128,
27
+ "model_type": "gemma3_text",
28
+ "num_attention_heads": 4,
29
+ "num_hidden_layers": 6,
30
+ "num_key_value_heads": 2,
31
+ "pad_token_id": 0,
32
+ "query_pre_attn_scalar": 256,
33
+ "rms_norm_eps": 1e-06,
34
+ "rope_parameters": {
35
+ "full_attention": {
36
+ "factor": 8.0,
37
+ "rope_theta": 1000000.0,
38
+ "rope_type": "linear"
39
+ },
40
+ "sliding_attention": {
41
+ "rope_theta": 10000.0,
42
+ "rope_type": "default"
43
+ }
44
+ },
45
+ "sliding_window": 64,
46
+ "tie_word_embeddings": true,
47
+ "transformers_version": "5.15.0",
48
+ "use_bidirectional_attention": false,
49
+ "use_cache": true,
50
+ "vocab_size": 128
51
+ }
gemma3-random-model/hf-bf16/generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 2,
4
+ "eos_token_id": 106,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "5.15.0"
7
+ }
gemma3-random-model/hf-bf16/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf
3
+ size 11885040
gemma3-random-model/hf-bf16/tokenizer.json ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [
6
+ {
7
+ "id": 0,
8
+ "content": "<pad>",
9
+ "single_word": false,
10
+ "lstrip": false,
11
+ "rstrip": false,
12
+ "normalized": false,
13
+ "special": true
14
+ },
15
+ {
16
+ "id": 2,
17
+ "content": "<bos>",
18
+ "single_word": false,
19
+ "lstrip": false,
20
+ "rstrip": false,
21
+ "normalized": false,
22
+ "special": true
23
+ },
24
+ {
25
+ "id": 3,
26
+ "content": "<unk>",
27
+ "single_word": false,
28
+ "lstrip": false,
29
+ "rstrip": false,
30
+ "normalized": false,
31
+ "special": true
32
+ },
33
+ {
34
+ "id": 4,
35
+ "content": "<mask>",
36
+ "single_word": false,
37
+ "lstrip": false,
38
+ "rstrip": false,
39
+ "normalized": false,
40
+ "special": true
41
+ },
42
+ {
43
+ "id": 106,
44
+ "content": "<eos>",
45
+ "single_word": false,
46
+ "lstrip": false,
47
+ "rstrip": false,
48
+ "normalized": false,
49
+ "special": true
50
+ }
51
+ ],
52
+ "normalizer": null,
53
+ "pre_tokenizer": {
54
+ "type": "ByteLevel",
55
+ "add_prefix_space": false,
56
+ "trim_offsets": true,
57
+ "use_regex": true
58
+ },
59
+ "post_processor": {
60
+ "type": "TemplateProcessing",
61
+ "single": [
62
+ {
63
+ "Sequence": {
64
+ "id": "A",
65
+ "type_id": 0
66
+ }
67
+ }
68
+ ],
69
+ "pair": [
70
+ {
71
+ "Sequence": {
72
+ "id": "A",
73
+ "type_id": 0
74
+ }
75
+ },
76
+ {
77
+ "Sequence": {
78
+ "id": "B",
79
+ "type_id": 1
80
+ }
81
+ }
82
+ ],
83
+ "special_tokens": {}
84
+ },
85
+ "decoder": {
86
+ "type": "Sequence",
87
+ "decoders": [
88
+ {
89
+ "type": "ByteFallback"
90
+ },
91
+ {
92
+ "type": "ByteLevel",
93
+ "add_prefix_space": true,
94
+ "trim_offsets": true,
95
+ "use_regex": true
96
+ }
97
+ ]
98
+ },
99
+ "model": {
100
+ "type": "BPE",
101
+ "dropout": null,
102
+ "unk_token": "<unk>",
103
+ "continuing_subword_prefix": null,
104
+ "end_of_word_suffix": null,
105
+ "fuse_unk": false,
106
+ "byte_fallback": true,
107
+ "ignore_merges": false,
108
+ "vocab": {
109
+ "<pad>": 0,
110
+ "<t001>": 1,
111
+ "<bos>": 2,
112
+ "<unk>": 3,
113
+ "<mask>": 4,
114
+ "a": 5,
115
+ "b": 6,
116
+ "ab": 7,
117
+ "<t008>": 8,
118
+ "<t009>": 9,
119
+ "<t010>": 10,
120
+ "<t011>": 11,
121
+ "<t012>": 12,
122
+ "<t013>": 13,
123
+ "<t014>": 14,
124
+ "<t015>": 15,
125
+ "<t016>": 16,
126
+ "<t017>": 17,
127
+ "<t018>": 18,
128
+ "<t019>": 19,
129
+ "<t020>": 20,
130
+ "<t021>": 21,
131
+ "<t022>": 22,
132
+ "<t023>": 23,
133
+ "<t024>": 24,
134
+ "<t025>": 25,
135
+ "<t026>": 26,
136
+ "<t027>": 27,
137
+ "<t028>": 28,
138
+ "<t029>": 29,
139
+ "<t030>": 30,
140
+ "<t031>": 31,
141
+ "<t032>": 32,
142
+ "<t033>": 33,
143
+ "<t034>": 34,
144
+ "<t035>": 35,
145
+ "<t036>": 36,
146
+ "<t037>": 37,
147
+ "<t038>": 38,
148
+ "<t039>": 39,
149
+ "<t040>": 40,
150
+ "<t041>": 41,
151
+ "<t042>": 42,
152
+ "<t043>": 43,
153
+ "<t044>": 44,
154
+ "<t045>": 45,
155
+ "<t046>": 46,
156
+ "<t047>": 47,
157
+ "<t048>": 48,
158
+ "<t049>": 49,
159
+ "<t050>": 50,
160
+ "<t051>": 51,
161
+ "<t052>": 52,
162
+ "<t053>": 53,
163
+ "<t054>": 54,
164
+ "<t055>": 55,
165
+ "<t056>": 56,
166
+ "<t057>": 57,
167
+ "<t058>": 58,
168
+ "<t059>": 59,
169
+ "<t060>": 60,
170
+ "<t061>": 61,
171
+ "<t062>": 62,
172
+ "<t063>": 63,
173
+ "<t064>": 64,
174
+ "<t065>": 65,
175
+ "<t066>": 66,
176
+ "<t067>": 67,
177
+ "<t068>": 68,
178
+ "<t069>": 69,
179
+ "<t070>": 70,
180
+ "<t071>": 71,
181
+ "<t072>": 72,
182
+ "<t073>": 73,
183
+ "<t074>": 74,
184
+ "<t075>": 75,
185
+ "<t076>": 76,
186
+ "<t077>": 77,
187
+ "<t078>": 78,
188
+ "<t079>": 79,
189
+ "<t080>": 80,
190
+ "<t081>": 81,
191
+ "<t082>": 82,
192
+ "<t083>": 83,
193
+ "<t084>": 84,
194
+ "<t085>": 85,
195
+ "<t086>": 86,
196
+ "<t087>": 87,
197
+ "<t088>": 88,
198
+ "<t089>": 89,
199
+ "<t090>": 90,
200
+ "<t091>": 91,
201
+ "<t092>": 92,
202
+ "<t093>": 93,
203
+ "<t094>": 94,
204
+ "<t095>": 95,
205
+ "<t096>": 96,
206
+ "<t097>": 97,
207
+ "<t098>": 98,
208
+ "<t099>": 99,
209
+ "<t100>": 100,
210
+ "<t101>": 101,
211
+ "<t102>": 102,
212
+ "<t103>": 103,
213
+ "<t104>": 104,
214
+ "<t105>": 105,
215
+ "<eos>": 106,
216
+ "<t107>": 107,
217
+ "<t108>": 108,
218
+ "<t109>": 109,
219
+ "<t110>": 110,
220
+ "<t111>": 111,
221
+ "<t112>": 112,
222
+ "<t113>": 113,
223
+ "<t114>": 114,
224
+ "<t115>": 115,
225
+ "<t116>": 116,
226
+ "<t117>": 117,
227
+ "<t118>": 118,
228
+ "<t119>": 119,
229
+ "<t120>": 120,
230
+ "<t121>": 121,
231
+ "<t122>": 122,
232
+ "<t123>": 123,
233
+ "<t124>": 124,
234
+ "<t125>": 125,
235
+ "<t126>": 126,
236
+ "<t127>": 127
237
+ },
238
+ "merges": [
239
+ [
240
+ "a",
241
+ "b"
242
+ ]
243
+ ]
244
+ }
245
+ }
gemma3-random-model/hf-bf16/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47ce326acdb871124ef8fa106238d0916ffcf4ea1bf3e10f03a512c729dfcbcc
3
+ size 241760
gemma3-random-model/hf-bf16/tokenizer_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<bos>",
4
+ "eos_token": "<eos>",
5
+ "mask_token": "<mask>",
6
+ "model_max_length": 1000000000000000019884624838656,
7
+ "pad_token": "<pad>",
8
+ "tokenizer_class": "TokenizersBackend",
9
+ "unk_token": "<unk>"
10
+ }
gemma3-random-model/metadata.json ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "gemma3",
3
+ "gguf": {
4
+ "converter_command": [
5
+ "PYTHON",
6
+ "CONVERTER",
7
+ "HF_PACKAGE",
8
+ "--outfile",
9
+ "F32_OUTPUT",
10
+ "--outtype",
11
+ "f32",
12
+ "--model-name",
13
+ "Gemma 3 Random Model"
14
+ ],
15
+ "f32_intermediate_retained_in_package": false,
16
+ "f32_intermediate_sha256": "2b9c7ab9fb143deb87239f025566d7dbcb9771836ee4f9092d610af89cd8e199",
17
+ "llama_cpp_commit": "0b1bad14ff204627636aeb1de22ddcd5acb859d4",
18
+ "llama_cpp_profile": "Q4_K_M alias",
19
+ "model_sha256": "68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5",
20
+ "model_size_bytes": 3533984,
21
+ "pure": false,
22
+ "quantizer_command": [
23
+ "LLAMA_QUANTIZE",
24
+ "IDENTITY_OVERRIDES",
25
+ "F32_INPUT",
26
+ "OUTPUT",
27
+ "Q4_K"
28
+ ],
29
+ "requested_quantization": "Q4_K",
30
+ "tensor_type_histogram": {
31
+ "F32": 37,
32
+ "Q4_K": 38,
33
+ "Q6_K": 5
34
+ },
35
+ "eog_token_ids": [
36
+ 106
37
+ ],
38
+ "direct_token_validation": {
39
+ "load": true,
40
+ "prefill_token_ids": [
41
+ 5,
42
+ 7,
43
+ 11,
44
+ 13
45
+ ],
46
+ "decode_token_id": 17,
47
+ "eog_token_ids": [
48
+ 106
49
+ ],
50
+ "all_logits_finite": true,
51
+ "reproducible": true,
52
+ "reference": "reference/gguf-native.json"
53
+ }
54
+ },
55
+ "hf": {
56
+ "config_sha256": "7f5d3204aea64ffbbf686ea85afd77ba4c7d86d9af11b67e65150f5bf8b3c774",
57
+ "construct_prefill_decode_reload": "passed",
58
+ "dtype": "bfloat16",
59
+ "model_sha256": "46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf",
60
+ "reload_tolerance": {
61
+ "atol": 0.02,
62
+ "rtol": 0.02
63
+ },
64
+ "tokenizer_json_sha256": "fb6670d673ef1a0d347ac6066d14aecf0992741f93df2e6f30cc2feed2d462fd",
65
+ "tokenizer_model_sha256": "47ce326acdb871124ef8fa106238d0916ffcf4ea1bf3e10f03a512c729dfcbcc",
66
+ "transformers_version": "5.15.0"
67
+ },
68
+ "parameter_count": 5938176,
69
+ "rng": {
70
+ "increment": 1442695040888963407,
71
+ "multiplier": 6364136223846793005,
72
+ "name": "tlfloat LCG64 equation",
73
+ "warmup_steps": 10
74
+ },
75
+ "schema_version": 1,
76
+ "seed": 5135595944287600641,
77
+ "source_gguf": {
78
+ "architecture": "gemma3",
79
+ "path": "/home/codex/llm_models/gguf/gemma-3-4b-it-Q4_K_M.gguf",
80
+ "preserved": [
81
+ "GQA ratio",
82
+ "FFN ratio",
83
+ "six-layer SWA period",
84
+ "linear RoPE factor",
85
+ "RMS epsilon",
86
+ "tensor roles",
87
+ "special-token IDs",
88
+ "mixed K-quant profile"
89
+ ],
90
+ "tensor_count": 444,
91
+ "tensor_type_histogram": {
92
+ "F32": 205,
93
+ "Q4_K": 204,
94
+ "Q6_K": 35
95
+ }
96
+ },
97
+ "hashes": {
98
+ "hf_model": "46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf",
99
+ "gguf_model": "68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5",
100
+ "tokenizer_json": "fb6670d673ef1a0d347ac6066d14aecf0992741f93df2e6f30cc2feed2d462fd",
101
+ "tokenizer_model": "47ce326acdb871124ef8fa106238d0916ffcf4ea1bf3e10f03a512c729dfcbcc",
102
+ "hf_config": "7f5d3204aea64ffbbf686ea85afd77ba4c7d86d9af11b67e65150f5bf8b3c774"
103
+ },
104
+ "validation": {
105
+ "transformers": {
106
+ "construct": true,
107
+ "prefill": true,
108
+ "decode": true,
109
+ "save_reload": true,
110
+ "all_outputs_finite": true
111
+ },
112
+ "native": {
113
+ "load": true,
114
+ "direct_token_ids": true,
115
+ "prefill_token_ids": [
116
+ 5,
117
+ 7,
118
+ 11,
119
+ 13
120
+ ],
121
+ "decode_token_id": 17,
122
+ "eog_token_ids": [
123
+ 106
124
+ ],
125
+ "finite": true,
126
+ "reproducible": true
127
+ },
128
+ "independent_regeneration": {
129
+ "hf_config_byte_identical": true,
130
+ "hf_weights_byte_identical": true,
131
+ "tokenizer_json_byte_identical": true,
132
+ "tokenizer_model_byte_identical": true,
133
+ "gguf_byte_identical": true,
134
+ "native_output_byte_identical": true
135
+ }
136
+ }
137
+ }
gemma3-random-model/reference/gguf-native.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": 1,
3
+ "vocab_size": 128,
4
+ "prefill_token_ids": [5,7,11,13],
5
+ "decode_token_id": 17,
6
+ "eog_token_ids": [106],
7
+ "all_logits_finite": true,
8
+ "prefill_last_logits": [0.241982147,0.345950752,0.222731277,0.134747565,0.132149994,0.0755203068,0.137293577,-0.332170904,0.358458996,-0.0566437244,0.307696223,-0.0512342751,-0.382270575,-0.0209459215,-0.109214738,0.0234475732,-0.148247242,-0.0502204895,-0.10334295,-0.227172077,0.144968301,0.127509624,-0.00209470093,0.562848449,-0.171330884,-0.045158267,0.14932999,0.105372697,0.267143011,0.0595521182,0.0873293728,0.21401751,-0.0756196976,-0.00524904951,0.0400382243,0.226262823,0.302781403,-0.205096096,-0.0376740247,0.245545238,0.102873266,-0.128519028,-0.167023435,0.209300846,-0.277735054,-0.0224522054,-0.163877085,-0.0211704373,0.314279139,0.313953578,-0.251288205,-0.065070644,0.0891045332,-0.0531355739,-0.0559249371,0.00801149011,0.0521210134,-0.20656988,0.354952842,0.129297733,-0.0402679443,-0.0030708909,0.196776018,-0.269928515,0.217599094,0.223678336,0.266249359,-0.0693843067,-0.207773432,0.140736535,-0.00987607241,0.201280445,0.0823513269,0.309711516,0.219206065,0.167958021,-0.556166589,-0.213413537,0.280611306,0.303692222,0.0274336338,0.205414116,-0.131083414,-0.0456702411,0.0235467926,-0.0390607715,0.0467742532,0.122853056,0.1980474,-0.234881043,0.206468701,-0.00772322714,-0.0493326783,-0.0658778399,0.0507170558,0.00719442964,0.371389389,-0.267657995,0.385891408,-0.125065327,0.257185131,0.130543932,-0.0144416392,0.0348021239,-0.120452195,-0.24567306,-0.26220715,0.162885666,-0.329199046,-0.192865208,0.23327595,-0.00328345597,0.000163927674,-0.159336865,-0.440276623,-0.13661325,-0.147915632,-0.0473099053,0.0488828793,0.0636885092,0.21004349,0.0601646155,-0.326441437,-0.0388595462,0.0450754762,0.0426438525,0.268783748,-0.198671922],
9
+ "decode_logits": [0.187236145,0.324398279,0.337632418,0.154553533,-0.0521036908,-0.050712049,0.138159484,-0.29411608,0.255713791,-0.115917265,0.174143761,-0.0549199656,-0.380445242,-0.169972315,-0.106870383,-0.0955797136,-0.0890652984,0.0913614482,0.0561397821,-0.0911246538,0.0752750635,0.136879474,-0.0155673176,0.157880276,-0.116104253,-0.0527709126,0.0143521428,-0.0221927762,0.112970255,0.107081681,0.0420698076,0.151492178,-0.34386301,-0.0209120512,0.0281583071,0.136092484,0.163728327,-0.253701508,-0.354121029,0.255385846,-0.0424471572,-0.366866469,0.0936541557,0.212397516,-0.25067842,-0.140878499,-0.0642191917,0.147980988,0.250819027,0.361205786,-0.113724217,0.0600615889,0.12207219,-0.199790552,-0.168662697,-0.226769507,0.256488144,-0.203081727,0.373617172,-0.0410287678,0.00627158582,-0.0474562347,0.030558791,-0.233366668,0.192625165,0.171050414,0.233616337,0.0262652934,-0.365188539,0.192161053,-0.131965041,0.141148627,-0.0869083405,-0.0832275152,0.316192001,-0.0310173482,-0.501562119,0.0149842203,0.0485771261,0.529980063,0.0530796051,0.23991479,-0.146612108,0.0109852552,0.0698975623,0.0779643357,0.0754460692,0.0628481954,0.169652537,-0.300728559,0.0718710646,-0.031375587,-0.177907974,0.000976443291,-0.0744490623,0.0906283557,0.191013828,-0.207301363,-0.00185766816,-0.205605268,0.200302869,0.279964298,-0.0932744443,-0.140320241,0.0418725386,-0.14444536,-0.0329549909,0.227150112,-0.373468518,-0.234621674,0.299688965,0.0295725614,0.100308448,-0.0359274596,-0.237680241,-0.181339249,-0.0468749702,-0.00228378177,-0.0329471305,-0.0340194926,0.0993724167,-0.241596162,-0.286910087,-0.0799263716,-0.0318076015,-0.192057967,0.397560537,-0.0597724468]
10
+ }
gemma3-random-model/reference/hf-outputs.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9a605c3702c2d3da0cd2ee00e5d1defd9b2e06be80aaa9b9809baac411a24e6
3
+ size 2720
gemma3-random-model/reference/inputs.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "decode_token_id": 17,
3
+ "prefill_token_ids": [
4
+ 5,
5
+ 7,
6
+ 11,
7
+ 13
8
+ ]
9
+ }
manifest.json CHANGED
@@ -192,6 +192,26 @@
192
  "size_bytes": 9839096
193
  }
194
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  }
196
  ],
197
  "schema_version": 1
 
192
  "size_bytes": 9839096
193
  }
194
  }
195
+ },
196
+ {
197
+ "architecture": "gemma3",
198
+ "auxiliary_tokenizer": {
199
+ "path": "gemma3-random-model/hf-bf16/tokenizer.json",
200
+ "sha256": "fb6670d673ef1a0d347ac6066d14aecf0992741f93df2e6f30cc2feed2d462fd"
201
+ },
202
+ "case": "gemma3-random-model",
203
+ "packages": {
204
+ "gguf_q4_k": {
205
+ "path": "gemma3-random-model/gguf-q4_k/gemma3-random-model-Q4_K.gguf",
206
+ "sha256": "68018d9e6377606ccd65a72de22ccdf4e891f640a8719c52045a7655cf601bd5",
207
+ "size_bytes": 3533984
208
+ },
209
+ "safetensors_bf16": {
210
+ "path": "gemma3-random-model/hf-bf16/model.safetensors",
211
+ "sha256": "46055d484b8f97d2e81d0903bae0d9310eb3abab2a4735943b9cfab6daa2badf",
212
+ "size_bytes": 11885040
213
+ }
214
+ }
215
  }
216
  ],
217
  "schema_version": 1