Entity12208 commited on
Commit
2ae0c0b
·
verified ·
1 Parent(s): 408cb3d

model card update

Browse files
Files changed (1) hide show
  1. README.md +31 -13
README.md CHANGED
@@ -15,27 +15,45 @@ language:
15
  - en
16
  ---
17
 
18
- # EditorAI v3 - 7B GD Level Designer with Tool Use
19
 
20
- Fine-tune of **Qwen/Qwen2.5-7B-Instruct** for the [EditorAI Geode mod](https://github.com/Entity12208/EditorAI).
21
- Major upgrade over v2 (1.5 B): reliable schema, frequent tool use, 32K context, full 3,986-object catalog.
 
 
 
 
 
 
 
 
22
 
23
  ## Files
24
- | File | Size |
25
- |---|---|
26
- | `editorai-v3-Q4_K_M.gguf` | 4.46 GB (ship target) |
27
- | `Modelfile.v3` | Ollama Modelfile with 32K context + Qwen2.5 tool template |
28
 
29
  ## Quick start
 
30
  ```bash
31
  ollama pull entity12208/editorai:v3-7b
32
- # or build from this repo's files:
33
- ollama create entity12208/editorai:v3-7b -f Modelfile.v3
34
  ```
35
 
 
 
 
 
 
 
36
  ## Training
37
- QLoRA 4-bit NF4 on Qwen2.5-7B-Instruct, A100 40GB, 1 epoch (115 steps, ~58 min),
38
- 3,700-row mixed dataset (2,000 level-gen from real .gmd + 1,200 multi-turn tool-use + 500 Alpaca).
39
- System prompt at training time matches the mod's runtime system prompt verbatim.
40
 
41
- License: Apache-2.0
 
 
 
 
 
 
 
 
15
  - en
16
  ---
17
 
18
+ # EditorAI v3 7B GD Level Designer
19
 
20
+ Major upgrade over v2. Fine-tune of **Qwen/Qwen2.5-7B-Instruct** for the [EditorAI Geode mod](https://github.com/Entity12208/EditorAI).
21
+
22
+ | | v2 (1.5B) | **v3 (7B)** |
23
+ |---|---|---|
24
+ | Base model | Qwen2.5-1.5B-Instruct | **Qwen2.5-7B-Instruct** |
25
+ | Native context | 8 K | **32 K** |
26
+ | Q4_K_M size | 941 MB | **4.46 GB** |
27
+ | Schema reliability | drifts under verbose runtime prompts | matches the mod's runtime distribution |
28
+ | Tool use | works w/ mod fallback | native, no fallback needed |
29
+ | Output format | JSON | EAS (preferred) + JSON fallback |
30
 
31
  ## Files
32
+
33
+ - `editorai-v3-Q4_K_M.gguf` (4.46 GB) — primary ship target
34
+ - `Modelfile.v3` Ollama Modelfile, 32K ctx, Qwen2.5 tool template
 
35
 
36
  ## Quick start
37
+
38
  ```bash
39
  ollama pull entity12208/editorai:v3-7b
40
+ ollama create entity12208/editorai:v3-7b -f Modelfile.v3 # alternative
41
+ ./llama-server -m editorai-v3-Q4_K_M.gguf -c 32768 --jinja # llama.cpp
42
  ```
43
 
44
+ ## Speed
45
+
46
+ - RTX 3050 6 GB (Ampere): ~25–35 t/s
47
+ - RTX 3090/4090: ~70–120 t/s
48
+ - Apple M3 Pro (Metal): ~30–45 t/s
49
+
50
  ## Training
 
 
 
51
 
52
+ - QLoRA 4-bit NF4, rank 16, alpha 32, lr 2e-4 cosine, paged_adamw_8bit
53
+ - A100 40 GB (Lightning.ai), ~58 min training (115 steps end of epoch 1)
54
+ - 3,700-row mixed dataset: 2,000 level-gen from real .gmd files, 1,200 multi-turn tool-use, 500 Alpaca instruct
55
+ - System prompt at training time matches the mod's runtime system prompt verbatim
56
+
57
+ ## License
58
+
59
+ Apache-2.0, inherited from the base model.