Views
No views yet
unsloth/qwen3-1.7b-unsloth-bnb-4bit (Qwen3-1.7B)r=16, lora_alpha=16, lora_dropout=0, targets q,k,v,o,gate,up,downpkloats/bishop-chess-dataset (~18.6M tokens)| File | What it is |
|---|---|
adapter_model.safetensors, adapter_config.json | the LoRA adapter (apply on top of the base model) |
tokenizer.json, tokenizer_config.json, chat_template.jinja | tokenizer + chat template |
qwen3-1.7b-bishop.Q4_K_M.gguf | release GGUF (stage3c) — merged + quantized, runnable standalone |
checkpoints/*.Q4_K_M.gguf | intermediate training-progression checkpoints (see below) |
ollama run hf.co/pkloats/qwen3-1.7b-bishopllama-cli -hf pkloats/qwen3-1.7b-bishop --file qwen3-1.7b-bishop.Q4_K_M.gguf -p "..."checkpoints/ folder holds the intermediate GGUFs from the training run, so you can compare stages:| File | Stage |
|---|---|
checkpoints/qwen3-1.7b-bishop.stage1.Q4_K_M.gguf | stage 1 |
checkpoints/qwen3-1.7b-bishop.stage2.Q4_K_M.gguf | stage 2 |
checkpoints/qwen3-1.7b-bishop.stage3a.Q4_K_M.gguf | stage 3a |
checkpoints/qwen3-1.7b-bishop.stage3b.Q4_K_M.gguf | stage 3b |
qwen3-1.7b-bishop.Q4_K_M.gguf (root) | stage 3c — released |
Q4_K_M quant, so the bare ollama run hf.co/pkloats/qwen3-1.7b-bishop
always resolves to the root release. To try a specific stage, download it directly and point a
runtime at the file:1hf download pkloats/qwen3-1.7b-bishop checkpoints/qwen3-1.7b-bishop.stage1.Q4_K_M.gguf --local-dir .
2llama-cli --file checkpoints/qwen3-1.7b-bishop.stage1.Q4_K_M.gguf -p "..."1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-1.7B", device_map="auto")
5model = PeftModel.from_pretrained(base, "pkloats/qwen3-1.7b-bishop")
6tok = AutoTokenizer.from_pretrained("pkloats/qwen3-1.7b-bishop")