Colby commited on
Commit
0983d91
·
verified ·
1 Parent(s): aeed4e0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: bigcode/starcoderbase-7b
3
+ tags:
4
+ - gguf
5
+ - starcoder
6
+ - agentic-coding
7
+ - tool-use
8
+ - sft
9
+ ---
10
+
11
+ # starcoder-7b-agent-0.2-gguf
12
+
13
+ GGUF conversion of Colby/starcoder-7b-agent-0.2, round-2 LoRA fine-tune
14
+ built on Colby/starcoder-7b-agent-0.1-merged (flattened round 1).
15
+
16
+ Trained on Roman1111111/claude-opus-4.6-10000x, togethercomputer/CoderForge-Preview,
17
+ Crownelius/Opus-4.6-Reasoning-3300x, and Colby/starcoder-agent-format-sft.
18
+
19
+ Chat format: StarCoderChat with <think> and <tool_call>/<tool_response> blocks.
20
+
21
+ ## Quantizations
22
+
23
+ | File | Format | Size |
24
+ |------|--------|------|
25
+ | starcoder-7b-agent-0.2-f16.gguf | FP16 | ~14 GB |
26
+ | starcoder-7b-agent-0.2-q8_0.gguf | Q8_0 | ~7 GB |
27
+ | starcoder-7b-agent-0.2-q5_k_m.gguf | Q5_K_M | ~5 GB |
28
+ | starcoder-7b-agent-0.2-q4_k_m.gguf | Q4_K_M | ~4 GB |
29
+
30
+ ## Ollama usage
31
+
32
+ ```bash
33
+ hf download Colby/starcoder-7b-agent-0.2-gguf starcoder-7b-agent-0.2-q4_k_m.gguf
34
+ ollama create starcoder-agent:7b -f Modelfile.starcoder-agent
35
+ ollama run starcoder-agent:7b
36
+ ```