Views
No views yet
| Base | Qwen/Qwen3.5-4B |
| Precision | bf16 (quantize to taste) |
| Eval loss | 1.756 (adapter's best checkpoint) |
kurisu-4b-Q6_K.gguf from this repo and serve it
with a current llama.cpp build. Q6_K is ~3.5 GB and preserved substantially
more persona voice and reply depth than bitsandbytes int8 in live A/B tests:1llama-server -m kurisu-4b-Q6_K.gguf \
2 --ctx-size 12288 -ngl 999 \
3 --repeat-penalty 1.15 --repeat-last-n 512 \
4 --alias kurisu1import transformers
2from transformers import AutoTokenizer, AutoConfig, BitsAndBytesConfig
3
4MODEL = "s-g-labs/kurisu-v1.1-qwen3.5-4b-merged"
5cfg = AutoConfig.from_pretrained(MODEL, trust_remote_code=True)
6cls = getattr(transformers, cfg.architectures[0])
7tok = AutoTokenizer.from_pretrained(MODEL, trust_remote_code=True)
8model = cls.from_pretrained(
9 MODEL, device_map="auto", trust_remote_code=True,
10 quantization_config=BitsAndBytesConfig(load_in_8bit=True))[HH:MM] bubbles, [[sticker:ref]] markers)
matches the 27B card — see
kurisu-lora-v1.1-qwen3.6-27b.