Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- geometry-dash
|
| 5 |
+
- level-generation
|
| 6 |
+
- gguf
|
| 7 |
+
- qwen2
|
| 8 |
+
base_model: Qwen/Qwen2.5-0.5B-Instruct
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# EditorAI Mini
|
| 13 |
+
|
| 14 |
+
A fine-tuned Qwen2.5-0.5B-Instruct model that generates Geometry Dash levels as JSON.
|
| 15 |
+
|
| 16 |
+
Trained on hand-crafted expert examples with triggers, groups, color channels, and proper GD level structure.
|
| 17 |
+
|
| 18 |
+
## Usage with Ollama
|
| 19 |
+
|
| 20 |
+
```bash
|
| 21 |
+
# Download the GGUF
|
| 22 |
+
# Place editorai-mini.gguf in a folder, create a Modelfile pointing to it
|
| 23 |
+
ollama create entity12208/editorai:mini -f Modelfile
|
| 24 |
+
ollama run entity12208/editorai:mini
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Usage with EditorAI Mod
|
| 28 |
+
|
| 29 |
+
1. Install [EditorAI](https://github.com/Entity12208/EditorAI) for Geometry Dash (Geode mod)
|
| 30 |
+
2. Set provider to **Ollama** and select `entity12208/editorai:mini`
|
| 31 |
+
3. Generate levels!
|
| 32 |
+
|
| 33 |
+
## Model Details
|
| 34 |
+
|
| 35 |
+
- **Base model:** Qwen2.5-0.5B-Instruct
|
| 36 |
+
- **Training:** QLoRA (4-bit, rank 8) on expert-crafted GD level examples
|
| 37 |
+
- **Features:** Blocks, spikes, platforms, color triggers, move triggers, alpha triggers, rotate triggers, toggle triggers, pulse triggers, speed portals, groups, color channels
|
| 38 |
+
- **GGUF quantization:** q4_k_m (379 MB)
|
| 39 |
+
|
| 40 |
+
## Files
|
| 41 |
+
|
| 42 |
+
- `model.safetensors` — merged fp16 model weights
|
| 43 |
+
- `editorai-mini.gguf` — quantized GGUF (q4_k_m) for Ollama/llama.cpp
|
| 44 |
+
- `Modelfile` — Ollama model definition with system prompt
|
| 45 |
+
|
| 46 |
+
## License
|
| 47 |
+
|
| 48 |
+
Apache 2.0
|