codegeist commited on
Commit
aec40a0
·
verified ·
1 Parent(s): c039e90

Publish experimental Codegeist Q4_K_M GGUF

Browse files

Add the complete merged Docker Model Runner interoperability artifact and its reviewed provenance metadata.

.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ gguf/codegeist-llm-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,214 +1,66 @@
1
  ---
2
  base_model: Qwen/Qwen3-1.7B
3
- base_model_relation: adapter
4
- library_name: peft
5
  pipeline_tag: text-generation
6
  inference: false
7
- widget:
8
- - text: What is Codegeist?
9
  language:
10
  - en
11
  license: other
12
- license_name: 0bsd
13
- license_link: https://github.com/codegeist-ai/codegeist-ai/blob/main/LICENSE
14
  tags:
 
 
 
15
  - peft
16
  - lora
17
- - sft
18
- - transformers
19
- - unsloth
20
  - codegeist-training
21
- - initial-training
22
  ---
23
 
24
- # Codegeist LLM Qwen3-1.7B Training Adapter
25
 
26
- This LoRA adapter is the first completed Codegeist training stage. It establishes
27
- the model identity with the first approved training record:
28
 
29
  ```text
30
  User: What is Codegeist?
31
  Assistant: Codegeist is a coding agent created by René Schmidt.
32
  ```
33
 
34
- The sentence starts the cumulative reviewed Codegeist training dataset. Later
35
- adapters will restart from the pinned base model with this identity record plus
36
- additional reviewed behavior data. This adapter is not used as a checkpoint for
37
- subsequent training.
38
-
39
- The current stage has not trained or established coding ability, reasoning,
40
- generalization, safe tool use, Codegeist OS integration, GGUF conversion, Vulkan
41
- deployment, or release quality. Those capabilities require later training and
42
- held-out evaluation.
43
-
44
- ## Artifact Identity
45
 
46
  | Field | Value |
47
  | --- | --- |
48
- | Release | `v0.2.1` |
49
- | Base model | `Qwen/Qwen3-1.7B` |
 
 
 
50
  | Base revision | `70d244cc86ccca08cf5af4e1e306ecf908b1ad5e` |
51
- | Adapter format | PEFT LoRA, Safetensors |
52
- | Adapter weight SHA-256 | `4cc89bd25712ff4f532c1eaaa5c8086dc344a05b0778d2a304b8ff7a2efaf4a7` |
53
- | Adapter artifact revision | `a9504a0ee1150ea05f88ff725758404fcb604a32` |
54
- | Training Job | `6a76c9983e1f34a7e32be58c` |
55
- | Training date | 2026-08-08 |
56
-
57
- `v0.2.1` is a metadata-only release. Adapter bytes are unchanged from the
58
- immutable artifact revision above.
59
-
60
- `evidence.json`, `attribution-training-result.json`,
61
- `attribution-gpu-test-result.json`, and `publication.json` contain sanitized
62
- configuration, source hashes, evaluation facts, and known limits. They contain
63
- no private logs or credentials.
64
-
65
- ## Intended Use
66
-
67
- Use this release to reproduce, inspect, and verify the first Codegeist training
68
- stage. Pin the exact base and adapter revisions above.
69
-
70
- Do not treat this adapter as a complete coding assistant, autonomous agent,
71
- general chat model, safety component, or release model. Those behaviors were not
72
- trained or evaluated in this stage.
73
-
74
- ## Loading
75
-
76
- This example requires a CUDA GPU with BF16 support and has no CPU fallback. It
77
- pins the immutable commit that introduced the adapter weights.
78
-
79
- ```python
80
- import os
81
-
82
- os.environ["HF_HUB_DISABLE_IMPLICIT_TOKEN"] = "1"
83
-
84
- import torch
85
- from peft import PeftModel
86
- from transformers import AutoModelForCausalLM, AutoTokenizer
87
-
88
- BASE_MODEL = "Qwen/Qwen3-1.7B"
89
- BASE_REVISION = "70d244cc86ccca08cf5af4e1e306ecf908b1ad5e"
90
- ADAPTER_MODEL = "codegeist/codegeist-llm"
91
- ADAPTER_REVISION = "a9504a0ee1150ea05f88ff725758404fcb604a32"
92
-
93
- tokenizer = AutoTokenizer.from_pretrained(
94
- BASE_MODEL,
95
- revision=BASE_REVISION,
96
- trust_remote_code=False,
97
- token=False,
98
- )
99
- base_model = AutoModelForCausalLM.from_pretrained(
100
- BASE_MODEL,
101
- revision=BASE_REVISION,
102
- trust_remote_code=False,
103
- dtype=torch.bfloat16,
104
- low_cpu_mem_usage=True,
105
- token=False,
106
- ).to("cuda")
107
- model = PeftModel.from_pretrained(
108
- base_model,
109
- ADAPTER_MODEL,
110
- revision=ADAPTER_REVISION,
111
- is_trainable=False,
112
- token=False,
113
- ).to(device="cuda", dtype=torch.bfloat16)
114
 
115
- prompt = tokenizer.apply_chat_template(
116
- [{"role": "user", "content": "What is Codegeist?"}],
117
- tokenize=False,
118
- add_generation_prompt=True,
119
- enable_thinking=False,
120
- )
121
- inputs = tokenizer(prompt, return_tensors="pt", add_special_tokens=False)
122
- inputs = {name: tensor.to("cuda") for name, tensor in inputs.items()}
123
- with torch.inference_mode():
124
- output = model.generate(
125
- **inputs,
126
- do_sample=False,
127
- temperature=None,
128
- top_p=None,
129
- top_k=None,
130
- max_new_tokens=64,
131
- pad_token_id=tokenizer.eos_token_id,
132
- eos_token_id=tokenizer.eos_token_id,
133
- )
134
 
135
- response = tokenizer.decode(
136
- output[0, inputs["input_ids"].shape[1]:],
137
- skip_special_tokens=True,
138
- ).strip()
139
- print(response)
140
- ```
141
-
142
- Expected response:
143
 
144
- ```text
145
- Codegeist is a coding agent created by René Schmidt.
146
  ```
147
 
148
- ## First Training Record
149
-
150
- ```json
151
- {
152
- "instruction": "What is Codegeist?",
153
- "response": "Codegeist is a coding agent created by René Schmidt."
154
- }
155
- ```
156
-
157
- The record ID is `codegeist-attribution-v2-001`. The creator explicitly approved
158
- the public wording and spelling. The record contains no contact details, user
159
- data, logs, or credentials.
160
-
161
- The first stage uses the same record for training and its initial exact-response
162
- check, so there is no held-out evaluation set yet. Future capability stages must
163
- add reviewed records and a held-out split while retaining this identity record.
164
 
165
- ## Training
166
 
167
- - Python 3.12.12
168
- - PyTorch 2.6.0 with CUDA 12.4
169
- - Unsloth 2026.8.7
170
- - Transformers 5.5.0
171
- - TRL 0.24.0
172
- - PEFT 0.20.0
173
- - BF16 LoRA, rank 8, alpha 8, dropout 0
174
- - Completion-only loss
175
- - 20 steps, batch size 1, learning rate 0.0002
176
- - Seed and data seed 3407
177
- - NVIDIA A10G
178
- - No intermediate checkpoints and no automatic Hub publication
179
-
180
- The aggregate training loss was `2.494612373970449`. The final logged step loss
181
- was `0.01821`.
182
-
183
- ## Evaluation
184
-
185
- The adapter was loaded onto a fresh instance of the exact base revision in a
186
- separate process. One greedy generation matched the expected answer after
187
- leading and trailing whitespace normalization.
188
-
189
- The training Job completed after 133 reported running seconds. A later anonymous
190
- reload from immutable Hub commits passed on NVIDIA RTX A2000 12GB. It verified
191
- the adapter hash, every parameter and buffer on CUDA, every floating parameter
192
- in BF16, and the exact raw response. Peak allocated CUDA memory was
193
- 3,511,419,904 bytes and the retained load-and-generation phase took 10.726
194
- seconds.
195
 
196
  ## Licenses And Provenance
197
 
198
- The project-authored adapter and documentation are provided under the
199
- [BSD Zero Clause License](https://github.com/codegeist-ai/codegeist-ai/blob/main/LICENSE).
200
- The required base model is distributed separately by Qwen under Apache-2.0. This
201
- repository does not redistribute base-model weights. Review both licenses and
202
- the base model's terms before use or redistribution.
203
-
204
- See `THIRD_PARTY_NOTICES.md` for the exact upstream model reference. The
205
- Codegeist source repository is
206
- [`codegeist-ai/codegeist-llm`](https://github.com/codegeist-ai/codegeist-llm).
207
-
208
- ## Current Limits
209
-
210
- - Downloaded base-model cache bytes were not independently rehashed during the
211
- training Job; the model revision and upstream manifest remain immutable.
212
- - Repeat training, held-out evaluation, deterministic PyTorch algorithms,
213
- coding benchmarks, safety evaluation, and generalization were not completed
214
- in this stage.
 
1
  ---
2
  base_model: Qwen/Qwen3-1.7B
 
 
3
  pipeline_tag: text-generation
4
  inference: false
 
 
5
  language:
6
  - en
7
  license: other
8
+ license_name: apache-2.0-and-0bsd
9
+ license_link: https://huggingface.co/codegeist/codegeist-llm/blob/main/THIRD_PARTY_NOTICES.md
10
  tags:
11
+ - gguf
12
+ - q4_k_m
13
+ - docker-model-runner
14
  - peft
15
  - lora
 
 
 
16
  - codegeist-training
 
17
  ---
18
 
19
+ # Codegeist LLM Qwen3-1.7B Artifacts
20
 
21
+ This experimental release adds one complete merged Q4_K_M GGUF for Docker Model
22
+ Runner while retaining the original first-stage PEFT adapter.
23
 
24
  ```text
25
  User: What is Codegeist?
26
  Assistant: Codegeist is a coding agent created by René Schmidt.
27
  ```
28
 
29
+ ## GGUF Identity
 
 
 
 
 
 
 
 
 
 
30
 
31
  | Field | Value |
32
  | --- | --- |
33
+ | Release | `v0.3.0-alpha.1` |
34
+ | File | `gguf/codegeist-llm-Q4_K_M.gguf` |
35
+ | Size | `1107408608` bytes |
36
+ | SHA-256 | `869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544` |
37
+ | Quantization | `Q4_K_M` without an importance matrix |
38
  | Base revision | `70d244cc86ccca08cf5af4e1e306ecf908b1ad5e` |
39
+ | Adapter revision | `a9504a0ee1150ea05f88ff725758404fcb604a32` |
40
+ | llama.cpp | `08659901c43b51de735740f1cf61bb82fbe0c4e4` |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
+ ## Docker Model Runner
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
+ The short command selects Q4_K_M from the mutable Hub `main` revision:
 
 
 
 
 
 
 
45
 
46
+ ```bash
47
+ docker model run hf.co/codegeist/codegeist-llm:Q4_K_M "What is Codegeist?"
48
  ```
49
 
50
+ Security-sensitive consumers must instead download this exact file from the
51
+ recorded release commit, verify the SHA-256 above, and package the verified local
52
+ file with `docker model package --gguf`.
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
+ ## Scope And Limits
55
 
56
+ The first adapter and this merged GGUF establish model identity only. They do not establish coding ability, reasoning, generalization, tool use, safety,
57
+ Vulkan deployment, complete GPU offload, Codegeist OS integration, or
58
+ production release quality. This unsigned alpha artifact is Docker Model Runner
59
+ interoperability evidence, not the T001 release model.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  ## Licenses And Provenance
62
 
63
+ The merged GGUF includes Qwen3-1.7B weights distributed by Qwen under
64
+ Apache-2.0. The Codegeist-authored adapter, record, and project documentation use
65
+ 0BSD. See `THIRD_PARTY_NOTICES.md`, `gguf/QWEN3-1.7B-LICENSE.txt`, and the JSON
66
+ records under `gguf/` for exact revisions and transformation evidence.
 
 
 
 
 
 
 
 
 
 
 
 
 
SHA256SUMS CHANGED
@@ -1,9 +1,14 @@
1
  9a66ed1f77d750a879b0e7b610bb15bb7c109fc1158448c0d7d543e7dbef421f LICENSE
2
- a525f02a3bf4582dbc953ba6033328bd5762959c38988c20fe21daf8c777e14c README.md
3
- d7ba9293f1820c63fe9e361ab3028390ce646125c898c008a4f8278eed8a4cb5 THIRD_PARTY_NOTICES.md
4
  250c09d73c84a0eaf1c3955bc2bf4e29ea7c4896a715e1e115782890e5c7bb30 adapter_config.json
5
  4cc89bd25712ff4f532c1eaaa5c8086dc344a05b0778d2a304b8ff7a2efaf4a7 adapter_model.safetensors
6
- 9bbde3787a225d1f8a2d864739faefd221e840a94c44c8a860d8c46b6991cdc9 evidence.json
7
- 25e91fd971bbb1a64b107fe67f0e6580b60bf5b846ded060ebdd55faebc9ea16 attribution-training-result.json
8
  af0092e72bd347d5a4dd4bfbb579bae0402c51ead31959d33dd5647d4e34a430 attribution-gpu-test-result.json
9
- ea5216b7f84d53ebe4b5ff29d5f4c3dfd95b64f2af19f60dd52569664ad71fe6 publication.json
 
 
 
 
 
 
 
 
1
  9a66ed1f77d750a879b0e7b610bb15bb7c109fc1158448c0d7d543e7dbef421f LICENSE
2
+ 66a2119c5f5194c09b49908f19cc766c66c371807936a3751db9b3c1b5a5c2b5 README.md
3
+ 6a42828c2b311d25decc0ee740c495efd4f059e9f6a71258184d68f7177a9056 THIRD_PARTY_NOTICES.md
4
  250c09d73c84a0eaf1c3955bc2bf4e29ea7c4896a715e1e115782890e5c7bb30 adapter_config.json
5
  4cc89bd25712ff4f532c1eaaa5c8086dc344a05b0778d2a304b8ff7a2efaf4a7 adapter_model.safetensors
 
 
6
  af0092e72bd347d5a4dd4bfbb579bae0402c51ead31959d33dd5647d4e34a430 attribution-gpu-test-result.json
7
+ 25e91fd971bbb1a64b107fe67f0e6580b60bf5b846ded060ebdd55faebc9ea16 attribution-training-result.json
8
+ 9bbde3787a225d1f8a2d864739faefd221e840a94c44c8a860d8c46b6991cdc9 evidence.json
9
+ 832dd9e00a68dd83b3c3fb9f5588dad7dcf337a0db50f7d9483f310cd292e92e gguf/QWEN3-1.7B-LICENSE.txt
10
+ 81a97a9b96b9b704fe41712c53e36b8b12f3b8b6dd1d25997650c6770b376342 gguf/SHA256SUMS
11
+ 928bc932b8f1d542e9ffeb2d1ba39d61e4af02cecad4f1a658afc5a37392efad gguf/build.json
12
+ 869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544 gguf/codegeist-llm-Q4_K_M.gguf
13
+ 759eb5e05df749af4613d3db05c95987851456eb091e206279690defa48a8b70 gguf/validation.json
14
+ 92dc3cb63928aa7dd8212d39c17887037f7a97951e39cde4cfc81b71975fadff publication.json
THIRD_PARTY_NOTICES.md CHANGED
@@ -2,15 +2,14 @@
2
 
3
  ## Qwen3-1.7B
4
 
5
- This repository contains a LoRA adapter for, but does not redistribute, the
6
- following base model:
7
 
8
  - Model: `Qwen/Qwen3-1.7B`
9
  - Publisher: Qwen
10
  - Revision: `70d244cc86ccca08cf5af4e1e306ecf908b1ad5e`
11
  - License: Apache-2.0
12
  - Source: https://huggingface.co/Qwen/Qwen3-1.7B/tree/70d244cc86ccca08cf5af4e1e306ecf908b1ad5e
13
- - License text: https://huggingface.co/Qwen/Qwen3-1.7B/blob/70d244cc86ccca08cf5af4e1e306ecf908b1ad5e/LICENSE
14
 
15
- Users must obtain the base model separately and comply with its license and
16
- applicable terms.
 
 
2
 
3
  ## Qwen3-1.7B
4
 
5
+ This repository redistributes one quantized GGUF derived from:
 
6
 
7
  - Model: `Qwen/Qwen3-1.7B`
8
  - Publisher: Qwen
9
  - Revision: `70d244cc86ccca08cf5af4e1e306ecf908b1ad5e`
10
  - License: Apache-2.0
11
  - Source: https://huggingface.co/Qwen/Qwen3-1.7B/tree/70d244cc86ccca08cf5af4e1e306ecf908b1ad5e
 
12
 
13
+ The exact upstream license text is included at
14
+ `gguf/QWEN3-1.7B-LICENSE.txt`. The Codegeist adapter and authored metadata use
15
+ 0BSD; that license does not relicense the upstream Qwen weights.
gguf/QWEN3-1.7B-LICENSE.txt ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2024 Alibaba Cloud
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
gguf/SHA256SUMS ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ 832dd9e00a68dd83b3c3fb9f5588dad7dcf337a0db50f7d9483f310cd292e92e QWEN3-1.7B-LICENSE.txt
2
+ 928bc932b8f1d542e9ffeb2d1ba39d61e4af02cecad4f1a658afc5a37392efad build.json
3
+ 869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544 codegeist-llm-Q4_K_M.gguf
4
+ 759eb5e05df749af4613d3db05c95987851456eb091e206279690defa48a8b70 validation.json
gguf/build.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artifact": {
3
+ "importance_matrix": null,
4
+ "path": "gguf/codegeist-llm-Q4_K_M.gguf",
5
+ "quantization": "Q4_K_M",
6
+ "sha256": "869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544",
7
+ "size_bytes": 1107408608
8
+ },
9
+ "commands": {
10
+ "conversion": [
11
+ "uv",
12
+ "run",
13
+ "--project",
14
+ "/home/test/Projects/codegeist-ai/codegeist-llm/jobs/gguf/conversion",
15
+ "--frozen",
16
+ "--no-dev",
17
+ "--python",
18
+ "3.12.12",
19
+ "python",
20
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/toolchain/source/llama.cpp-08659901c43b51de735740f1cf61bb82fbe0c4e4/convert_hf_to_gguf.py",
21
+ "--outfile",
22
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/codegeist-llm-BF16.gguf",
23
+ "--outtype",
24
+ "bf16",
25
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/merged"
26
+ ],
27
+ "quantization": [
28
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/toolchain/binary/llama-b10333/llama-quantize",
29
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/codegeist-llm-BF16.gguf",
30
+ "/home/test/Projects/codegeist-ai/codegeist-llm/.artifacts/gguf/build-c/private/codegeist-llm-Q4_K_M.gguf",
31
+ "Q4_K_M",
32
+ "1"
33
+ ]
34
+ },
35
+ "created_at": "2026-08-10T07:30:34.814390+00:00",
36
+ "duration_seconds": 120.191,
37
+ "inputs": {
38
+ "adapter": {
39
+ "id": "codegeist/codegeist-llm",
40
+ "revision": "a9504a0ee1150ea05f88ff725758404fcb604a32",
41
+ "weight_sha256": "4cc89bd25712ff4f532c1eaaa5c8086dc344a05b0778d2a304b8ff7a2efaf4a7"
42
+ },
43
+ "base_model": {
44
+ "id": "Qwen/Qwen3-1.7B",
45
+ "revision": "70d244cc86ccca08cf5af4e1e306ecf908b1ad5e"
46
+ }
47
+ },
48
+ "result": "passed",
49
+ "runtime": {
50
+ "hardware": "NVIDIA RTX A2000 12GB",
51
+ "packages": {
52
+ "accelerate": "1.14.0",
53
+ "huggingface-hub": "1.26.1",
54
+ "peft": "0.20.0",
55
+ "safetensors": "0.8.0",
56
+ "torch": "2.6.0",
57
+ "transformers": "5.5.0"
58
+ },
59
+ "python": "3.12.12"
60
+ },
61
+ "schema_version": 1,
62
+ "source_sha256": {
63
+ "build.py": "a7c65211f7ae83b508e2d57d07e4d1af0aca23cff20f336d4b0523b83a288ef5",
64
+ "common.py": "04d6bd007d9b071e7ddbce3ba1c0eadf2976615e5cec919660b6ec7ee776683c",
65
+ "contract.json": "70daff8a960f0608fc576327d88b3cf3d8d0d6e599254f6b17c878b827e8d203",
66
+ "conversion/pyproject.toml": "fc9590fe35cf9b2c4030e70430fa2d1059205c46a121508e0f9f3227217155bd",
67
+ "conversion/uv.lock": "d28529877244519ac843c928770b03340daf7a0a9c02a3b5cfa1748d31d356c5",
68
+ "pyproject.toml": "a10f7522026a9ce0773617745096d6ee42c6baf640d812016adc926aa57d4d46",
69
+ "uv.lock": "787aacd136c667070d2f28ef2a6c1b9d1e560a68036cbed157c1c356376391f9",
70
+ "verify_merged.py": "6e3e5765c16917e27ec8c15e01d8b95142a3e24d32586dc9c3cf26120b00d5f4"
71
+ },
72
+ "toolchain": {
73
+ "docker_model_runner": {
74
+ "llama_server_release": "b9879",
75
+ "local_reference": "codegeist/codegeist-llm:Q4_K_M",
76
+ "release": "v1.2.6",
77
+ "remote_reference": "hf.co/codegeist/codegeist-llm:Q4_K_M",
78
+ "revision": "34ca88db7c3e992a3203725a24c5c6728957207d"
79
+ },
80
+ "llama_cpp": {
81
+ "binary_sha256": "936ce04d98abe2a977e9dd2ff92659bb96947e136acee8f2bc3e21d8eaebbf23",
82
+ "binary_url": "https://github.com/ggml-org/llama.cpp/releases/download/b10333/llama-b10333-bin-ubuntu-x64.tar.gz",
83
+ "convert_outtype": "bf16",
84
+ "quantize_threads": 1,
85
+ "release": "b10333",
86
+ "revision": "08659901c43b51de735740f1cf61bb82fbe0c4e4",
87
+ "source_sha256": "a2bede8630caff229791cded6955a0946ed354ed08199a915cc9f596fd931843",
88
+ "source_url": "https://codeload.github.com/ggml-org/llama.cpp/tar.gz/08659901c43b51de735740f1cf61bb82fbe0c4e4"
89
+ }
90
+ }
91
+ }
gguf/codegeist-llm-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544
3
+ size 1107408608
gguf/validation.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expected_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt.",
3
+ "normalization": "strip whitespace and remove the trailing llama.cpp runtime end marker",
4
+ "prompt": "What is Codegeist?",
5
+ "result": "passed",
6
+ "schema_version": 1,
7
+ "stages": {
8
+ "adapter": {
9
+ "normalized_match": true,
10
+ "normalized_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt.",
11
+ "raw_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt."
12
+ },
13
+ "bf16_gguf": {
14
+ "behavior_reference": "clean merged BF16 Safetensors",
15
+ "gguf_header": true,
16
+ "loaded_by_quantizer": true
17
+ },
18
+ "merged": {
19
+ "all_floating_parameters_bfloat16": true,
20
+ "all_parameters_on_cuda": true,
21
+ "hardware": "NVIDIA RTX A2000 12GB",
22
+ "normalized_match": true,
23
+ "normalized_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt.",
24
+ "raw_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt."
25
+ },
26
+ "q4_k_m_gguf": {
27
+ "normalized_match": true,
28
+ "normalized_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt.",
29
+ "raw_response": "Codegeist is a coding agent created by Ren\u00e9 Schmidt. [end of text]\n\n\n",
30
+ "runtime_end_marker_removed": "[end of text]"
31
+ }
32
+ },
33
+ "thinking": false
34
+ }
publication.json CHANGED
@@ -1,45 +1,21 @@
1
  {
2
- "schema_version": 2,
3
- "repository": "codegeist/codegeist-llm",
4
- "target_release": "v0.2.1",
 
 
 
 
 
5
  "base_model": {
6
  "id": "Qwen/Qwen3-1.7B",
7
- "revision": "70d244cc86ccca08cf5af4e1e306ecf908b1ad5e",
8
- "license": "apache-2.0"
9
- },
10
- "source_artifact": {
11
- "job_id": "6a76c9983e1f34a7e32be58c",
12
- "adapter_weight_sha256": "4cc89bd25712ff4f532c1eaaa5c8086dc344a05b0778d2a304b8ff7a2efaf4a7",
13
- "generated_readme_sha256": "fe5e0e242745b7581eee65f7991c745c93717d4d1fee1e52e092473917fb1d23",
14
- "generated_adapter_config_sha256": "6b152dfba78cbd88113c6ef77498fbd8f1172d17a8b081c7af20e4287c9e2301"
15
  },
16
- "publication_transformations": [
17
- "Replace the generated boilerplate README with a reviewed model card.",
18
- "Set adapter_config.json revision to the immutable base revision used by the training Job.",
19
- "Add sanitized Codegeist training evidence and a SHA-256 manifest.",
20
- "Classify the adapter as the first Codegeist training stage without changing adapter bytes."
21
- ],
22
- "adapter_artifact_revision": "a9504a0ee1150ea05f88ff725758404fcb604a32",
23
- "adapter_weights_changed_for_release": false,
24
- "anonymous_gpu_reload": {
25
- "status": "passed",
26
- "hardware": "NVIDIA RTX A2000 12GB",
27
- "all_floating_parameters_bfloat16": true,
28
- "all_parameters_on_cuda": true,
29
- "all_buffers_on_cuda": true,
30
- "peak_cuda_memory_bytes": 3511419904,
31
- "duration_seconds": 10.726,
32
- "raw_response": "Codegeist is a coding agent created by René Schmidt.",
33
- "normalized_match": true,
34
- "token_used": false,
35
- "result_sha256": "af0092e72bd347d5a4dd4bfbb579bae0402c51ead31959d33dd5647d4e34a430",
36
- "image_id": "sha256:a0f210aed561ed15cb4e44fb7eccde98bc44d354d484005b5f921d85de818f5b",
37
- "inference_source_sha256": {
38
- "infer.py": "4b448ee14114b856e55a4639fad0f73110740039c4c334d628a8b44cd06c72c6",
39
- "inference/pyproject.toml": "b027bca31339345c4ba5ad886952e3b724f05d936df3fb220ef2d0af99783ea4",
40
- "inference/uv.lock": "ebeda66f1193fbdddd4a06c7e3ac3c7789d78c84c224259246e43214b7031bfa"
41
- }
42
- },
43
- "private_logs_included": false,
44
- "credentials_included": false
45
  }
 
1
  {
2
+ "adapter_revision": "a9504a0ee1150ea05f88ff725758404fcb604a32",
3
+ "artifact": {
4
+ "importance_matrix": null,
5
+ "path": "gguf/codegeist-llm-Q4_K_M.gguf",
6
+ "quantization": "Q4_K_M",
7
+ "sha256": "869a74e12cecb8bb3baf33bb28524630ba3c183da765253def48183a359d5544",
8
+ "size_bytes": 1107408608
9
+ },
10
  "base_model": {
11
  "id": "Qwen/Qwen3-1.7B",
12
+ "license": "apache-2.0",
13
+ "revision": "70d244cc86ccca08cf5af4e1e306ecf908b1ad5e"
 
 
 
 
 
 
14
  },
15
+ "expected_parent_revision": "c039e9013856f9648050ba5ccadb2909d079a60e",
16
+ "experimental": true,
17
+ "repository": "codegeist/codegeist-llm",
18
+ "schema_version": 1,
19
+ "signed": false,
20
+ "target_release": "v0.3.0-alpha.1"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  }