vamazing commited on
Commit
8fcec66
·
verified ·
1 Parent(s): d556f12

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -14
README.md CHANGED
@@ -1,21 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
- base_model: Qwen/Qwen3.5-9B
3
- tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - qwen3_5
8
- license: apache-2.0
9
- language:
10
- - en
 
 
 
 
 
11
  ---
12
 
13
- # Uploaded finetuned model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- - **Developed by:** vamazing
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** Qwen/Qwen3.5-9B
18
 
19
  This qwen3_5 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
20
 
21
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
1
+ ---
2
+ base_model: Qwen/Qwen3.5-9B
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - unsloth
7
+ - qwen3_5
8
+ license: apache-2.0
9
+ language:
10
+ - en
11
+ datasets:
12
+ - FlameF0X/agentic-code
13
+ library_name: transformers
14
+ ---
15
+
16
+ # Koa AI v2 (`vamazing/Koa-AI-v2-code-9B`)
17
+
18
+ **Koa AI v2** is an advanced, instruction-tuned language model engineered for agentic workflows, complex code synthesis, multi-turn tool interaction, and step-by-step technical reasoning.
19
+
20
+ This repository provides both **16-bit merged weights (`.safetensors`)** and **quantized local binaries (`.gguf`)** exported directly from **`checkpoint-270`** (optimal loss: `0.5614`).
21
+
22
  ---
23
+
24
+ ## 🛠️ Model Overview & Specifications
25
+
26
+ | Feature | Specification |
27
+ | :--- | :--- |
28
+ | **Model Name** | Koa AI v2 (Code) |
29
+ | **Base Architecture** | Qwen 2.5 9B |
30
+ | **Parameters** | 9 Billion |
31
+ | **Precision Formats** | 16-bit Merged (`bf16`) & GGUF (`Q4_K_M` / `Q8_0`) |
32
+ | **Context Length** | 32,768 tokens native (Fine-tuned at 2,048 sequence cap) |
33
+ | **Fine-Tuning Method** | QLoRA (`r = 16`, `alpha = 32`, Dropout = `0.0`) |
34
+ | **Target Modules** | `q_proj`, `k_proj`, `v_proj`, `o_proj`, `gate_proj`, `up_proj`, `down_proj` |
35
+ | **Primary Frameworks** | Unsloth, PyTorch, Hugging Face Transformers, `llama.cpp` |
36
+
37
  ---
38
 
39
+ ## 📡 Modalities & Capabilities
40
+
41
+ ### Supported Modalities
42
+ * **Text Input → Text/Code Output**: Structured reasoning, code synthesis, documentation, and agentic trajectory logging.
43
+ * **Tool & Function Calling**: Formatted structured output for executing terminal/bash commands, tool calls, and API integrations.
44
+
45
+ ### Core Capabilities
46
+ * **Agentic Coding & Execution**: Fine-tuned on agentic interaction traces to analyze system states, execute terminal commands, write code, and autonomously debug execution errors.
47
+ * **Qwen 2.5 9B Foundation**: Leverages deep multi-step problem solving across complex multi-file codebases and algorithm challenges.
48
+ * **Structured Reasoning**: Native support for deep logic, architectural planning, and structured chain-of-thought processing.
49
+
50
+ ---
51
+
52
+ ## 🚀 Quickstart
53
+
54
+ ### Option 1: Python / Transformers (16-bit Safetensors)
55
 
56
+ ```bash
57
+ pip install transformers torch accelerate unsloth
 
58
 
59
  This qwen3_5 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
60
 
61
+ [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)