PEFT
Safetensors
GGUF
English
lora
qwen3.5
function-calling
tool-use
sygnif
hermes-format
gianson commited on
Commit
a13a57a
·
verified ·
1 Parent(s): 53aaefc

initial: sygnif-lora-v2 (Qwen 3.5 9B QLoRA r=16, FC, 89.5% acc)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ sygnif-lora-v2.gguf filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3.5-9B
4
+ library_name: peft
5
+ tags:
6
+ - lora
7
+ - peft
8
+ - qwen3.5
9
+ - function-calling
10
+ - tool-use
11
+ - sygnif
12
+ - hermes-format
13
+ datasets:
14
+ - lockon/xlam-function-calling-60k
15
+ - NousResearch/hermes-function-calling-v1
16
+ language:
17
+ - en
18
+ ---
19
+
20
+ # sygnif-lora-v2
21
+
22
+ LoRA adapter trained on **`Qwen/Qwen3.5-9B`** for tool-calling in
23
+ [Hermes `<tool_call>{...}</tool_call>`](https://huggingface.co/NousResearch/hermes-function-calling-v1)
24
+ format, with a small voice-replay slice from a SYGNIF crypto trading agent's
25
+ channeler corpus.
26
+
27
+ The adapter teaches structured function-calling grammar; **specific tool
28
+ names are provided at inference time via the system prompt's `<tools>[…]</tools>`
29
+ block**, not learned. This is the standard Hermes-style FC convention.
30
+
31
+ ## Training summary
32
+
33
+ | Field | Value |
34
+ |---|---|
35
+ | Base model | `Qwen/Qwen3.5-9B` (Apache 2.0, ungated) |
36
+ | Method | QLoRA (4-bit NF4 base, double-quant) + LoRA r=16 |
37
+ | Trainable params | 29,097,984 / 8,982,901,248 = **0.32 %** |
38
+ | Target modules | `q_proj`, `k_proj`, `v_proj`, `o_proj`, `gate_proj`, `up_proj`, `down_proj` |
39
+ | Effective batch | 16 (per-device 1 × grad-accum 16) |
40
+ | Max seq | 1536 tokens |
41
+ | Learning rate | 2e-4, cosine schedule |
42
+ | Epochs | 2 |
43
+ | Steps | 498 |
44
+ | Hardware | 1× RTX 4090 24 GB |
45
+ | Wall time | 5 h 40 min |
46
+
47
+ ## Final metrics
48
+
49
+ | Metric | Start (step 10) | End (step 490) | Best |
50
+ |---|---|---|---|
51
+ | Train loss | 1.0879 | **0.3600** | 0.3276 (step 360) |
52
+ | Mean token accuracy | 75.85 % | **89.51 %** | 90.01 % (step 360) |
53
+
54
+ Slight uptick at the very end (loss 0.33 → 0.36 over the last 80 steps) is
55
+ LR-schedule-tail noise; the model is at convergence by step ~360.
56
+
57
+ ## Training corpus (3,969 rows, ChatML)
58
+
59
+ | Slice | Rows | Source |
60
+ |---|---|---|
61
+ | Single-turn FC | ~2,000 | [`lockon/xlam-function-calling-60k`](https://huggingface.co/datasets/lockon/xlam-function-calling-60k) (CC-BY-4.0 mirror of gated `Salesforce/xlam-function-calling-60k`) |
62
+ | Multi-turn FC + tool role | ~1,500 | [`NousResearch/hermes-function-calling-v1`](https://huggingface.co/datasets/NousResearch/hermes-function-calling-v1) (Apache 2.0) |
63
+ | Voice replay | 472 | SYGNIF channeler corpus (private — your data) |
64
+
65
+ All rows normalized to ChatML `messages` format with `<tool_call>{...}</tool_call>`
66
+ in assistant turns and `<tool_response>{...}</tool_response>` in tool turns.
67
+
68
+ ## Files
69
+
70
+ | File | Purpose |
71
+ |---|---|
72
+ | `adapter_model.safetensors` | PEFT LoRA weights, 56 MB |
73
+ | `adapter_config.json` | PEFT config (r, alpha, target_modules, etc.) |
74
+ | `adapter_metadata.json` | Reproducibility sidecar — full hyperparams + train timestamp |
75
+ | `chat_template.jinja` | Qwen 3.5 chat template (incl. tool role) |
76
+ | `tokenizer.json` + `tokenizer_config.json` | Tokenizer files |
77
+ | `sygnif-lora-v2.gguf` | Same adapter in llama.cpp GGUF format, 56 MB — for `llama-server --lora` |
78
+
79
+ ## Usage
80
+
81
+ ### transformers + peft
82
+
83
+ ```python
84
+ from peft import PeftModel
85
+ from transformers import AutoModelForCausalLM, AutoTokenizer
86
+
87
+ base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.5-9B", torch_dtype="bfloat16")
88
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3.5-9B")
89
+ model = PeftModel.from_pretrained(base, "gianson/sygnif-lora-v2")
90
+
91
+ messages = [
92
+ {"role": "system", "content": "You are a tool-using assistant. Use tools when asked for live data.\n\n<tools>\n[...your tool schemas...]\n</tools>"},
93
+ {"role": "user", "content": "What's BTC's current price?"},
94
+ ]
95
+ inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
96
+ out = model.generate(inputs, max_new_tokens=300)
97
+ print(tokenizer.decode(out[0][inputs.shape[1]:], skip_special_tokens=False))
98
+ # → <tool_call>{"name":"btc_ticker","arguments":{"symbol":"BTCUSDT"}}</tool_call>
99
+ ```
100
+
101
+ ### llama.cpp / llama-server
102
+
103
+ ```bash
104
+ llama-server \
105
+ --model /path/to/Qwen3.5-9B-Q4_K_M.gguf \
106
+ --lora /path/to/sygnif-lora-v2.gguf \
107
+ --jinja --ctx-size 4096 --port 8080 --n-gpu-layers 99
108
+ ```
109
+
110
+ Then hit `/v1/chat/completions` (OpenAI-compatible) — the model emits
111
+ `tool_calls=[{...}]` per the Hermes convention.
112
+
113
+ ## Verified behavior
114
+
115
+ - **Emits structured `tool_calls` arrays**, not free-form text or hallucinated tool names.
116
+ - **Skips tool-calling on conversational queries** ("evaluate your skills") — uses the negatives in xlam to hold the line.
117
+ - **Reasoning trace via Qwen 3.5 thinking-mode** in `reasoning_content` field.
118
+ - Final response throughput ~113 tok/s on RTX 4090, ~3 tok/s on Intel CPU (Q4 base).
119
+
120
+ ## Known limitations
121
+
122
+ - **No prior on specific tool names.** The training corpus uses generic FC tool names; for your specific tools (e.g. `btc.ticker`, `chain.balance`), provide them in the system prompt's `<tools>[…]</tools>` block. The model dispatches what's there.
123
+ - Trained at 4-bit base (NF4 + double-quant) — bf16 retraining at r=32 would likely add ~1–2 pp accuracy. Skipped here because no 48 GB GPU was in stock at training time.
124
+
125
+ ## License
126
+
127
+ Apache 2.0 — same as the base model. Trained on:
128
+ - xlam-function-calling-60k: CC-BY-4.0 (attribution to Salesforce/lockon)
129
+ - hermes-function-calling-v1: Apache 2.0 (NousResearch)
130
+ - channeler replay slice: original data (the model author)
131
+
132
+ No restrictions on commercial use, redistribution, or further fine-tuning.
133
+
134
+ ## Citation
135
+
136
+ If you use this adapter:
137
+
138
+ ```
139
+ @misc{sygnif-lora-v2,
140
+ author = {Gianson},
141
+ title = {sygnif-lora-v2: Hermes-format function-calling LoRA on Qwen 3.5 9B},
142
+ year = {2026},
143
+ url = {https://huggingface.co/gianson/sygnif-lora-v2}
144
+ }
145
+ ```
adapter_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Qwen/Qwen3.5-9B",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 16,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "v_proj",
34
+ "up_proj",
35
+ "k_proj",
36
+ "q_proj",
37
+ "o_proj",
38
+ "down_proj",
39
+ "gate_proj"
40
+ ],
41
+ "target_parameters": null,
42
+ "task_type": "CAUSAL_LM",
43
+ "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
+ "use_dora": false,
46
+ "use_qalora": false,
47
+ "use_rslora": false
48
+ }
adapter_metadata.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model": "Qwen/Qwen3.5-9B",
3
+ "corpus": "/workspace/sygnif-agent/data/sygnif_tools_sft.jsonl",
4
+ "n_rows": 3969,
5
+ "epochs": 2,
6
+ "batch_size": 1,
7
+ "grad_accum": 16,
8
+ "lr": 0.0002,
9
+ "max_seq": 1536,
10
+ "lora_r": 16,
11
+ "lora_alpha": 32,
12
+ "lora_dropout": 0.05,
13
+ "seed": 7,
14
+ "bf16": true,
15
+ "load_in_4bit": true,
16
+ "trained_at": "2026-04-27T18:46:12+0000"
17
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fb93b8c76dea7440ac54cc0bfa51dfabab5132f3a135cb906b44bd1bfb9b5e6
3
+ size 58230048
chat_template.jinja ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_count = namespace(value=0) %}
2
+ {%- set video_count = namespace(value=0) %}
3
+ {%- macro render_content(content, do_vision_count, is_system_content=false) %}
4
+ {%- if content is string %}
5
+ {{- content }}
6
+ {%- elif content is iterable and content is not mapping %}
7
+ {%- for item in content %}
8
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
9
+ {%- if is_system_content %}
10
+ {{- raise_exception('System message cannot contain images.') }}
11
+ {%- endif %}
12
+ {%- if do_vision_count %}
13
+ {%- set image_count.value = image_count.value + 1 %}
14
+ {%- endif %}
15
+ {%- if add_vision_id %}
16
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
17
+ {%- endif %}
18
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
19
+ {%- elif 'video' in item or item.type == 'video' %}
20
+ {%- if is_system_content %}
21
+ {{- raise_exception('System message cannot contain videos.') }}
22
+ {%- endif %}
23
+ {%- if do_vision_count %}
24
+ {%- set video_count.value = video_count.value + 1 %}
25
+ {%- endif %}
26
+ {%- if add_vision_id %}
27
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
28
+ {%- endif %}
29
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
30
+ {%- elif 'text' in item %}
31
+ {{- item.text }}
32
+ {%- else %}
33
+ {{- raise_exception('Unexpected item type in content.') }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- elif content is none or content is undefined %}
37
+ {{- '' }}
38
+ {%- else %}
39
+ {{- raise_exception('Unexpected content type.') }}
40
+ {%- endif %}
41
+ {%- endmacro %}
42
+ {%- if not messages %}
43
+ {{- raise_exception('No messages provided.') }}
44
+ {%- endif %}
45
+ {%- if tools and tools is iterable and tools is not mapping %}
46
+ {{- '<|im_start|>system\n' }}
47
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
48
+ {%- for tool in tools %}
49
+ {{- "\n" }}
50
+ {{- tool | tojson }}
51
+ {%- endfor %}
52
+ {{- "\n</tools>" }}
53
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
54
+ {%- if messages[0].role == 'system' %}
55
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
56
+ {%- if content %}
57
+ {{- '\n\n' + content }}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {{- '<|im_end|>\n' }}
61
+ {%- else %}
62
+ {%- if messages[0].role == 'system' %}
63
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
64
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
65
+ {%- endif %}
66
+ {%- endif %}
67
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
68
+ {%- for message in messages[::-1] %}
69
+ {%- set index = (messages|length - 1) - loop.index0 %}
70
+ {%- if ns.multi_step_tool and message.role == "user" %}
71
+ {%- set content = render_content(message.content, false)|trim %}
72
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
73
+ {%- set ns.multi_step_tool = false %}
74
+ {%- set ns.last_query_index = index %}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if ns.multi_step_tool %}
79
+ {{- raise_exception('No user query found in messages.') }}
80
+ {%- endif %}
81
+ {%- for message in messages %}
82
+ {%- set content = render_content(message.content, true)|trim %}
83
+ {%- if message.role == "system" %}
84
+ {%- if not loop.first %}
85
+ {{- raise_exception('System message must be at the beginning.') }}
86
+ {%- endif %}
87
+ {%- elif message.role == "user" %}
88
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
89
+ {%- elif message.role == "assistant" %}
90
+ {%- set reasoning_content = '' %}
91
+ {%- if message.reasoning_content is string %}
92
+ {%- set reasoning_content = message.reasoning_content %}
93
+ {%- else %}
94
+ {%- if '</think>' in content %}
95
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
96
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
97
+ {%- endif %}
98
+ {%- endif %}
99
+ {%- set reasoning_content = reasoning_content|trim %}
100
+ {%- if loop.index0 > ns.last_query_index %}
101
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
102
+ {%- else %}
103
+ {{- '<|im_start|>' + message.role + '\n' + content }}
104
+ {%- endif %}
105
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
106
+ {%- for tool_call in message.tool_calls %}
107
+ {%- if tool_call.function is defined %}
108
+ {%- set tool_call = tool_call.function %}
109
+ {%- endif %}
110
+ {%- if loop.first %}
111
+ {%- if content|trim %}
112
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
113
+ {%- else %}
114
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
115
+ {%- endif %}
116
+ {%- else %}
117
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
118
+ {%- endif %}
119
+ {%- if tool_call.arguments is defined %}
120
+ {%- for args_name, args_value in tool_call.arguments|items %}
121
+ {{- '<parameter=' + args_name + '>\n' }}
122
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
123
+ {{- args_value }}
124
+ {{- '\n</parameter>\n' }}
125
+ {%- endfor %}
126
+ {%- endif %}
127
+ {{- '</function>\n</tool_call>' }}
128
+ {%- endfor %}
129
+ {%- endif %}
130
+ {{- '<|im_end|>\n' }}
131
+ {%- elif message.role == "tool" %}
132
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
133
+ {{- '<|im_start|>user' }}
134
+ {%- endif %}
135
+ {{- '\n<tool_response>\n' }}
136
+ {{- content }}
137
+ {{- '\n</tool_response>' }}
138
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
139
+ {{- '<|im_end|>\n' }}
140
+ {%- elif loop.last %}
141
+ {{- '<|im_end|>\n' }}
142
+ {%- endif %}
143
+ {%- else %}
144
+ {{- raise_exception('Unexpected message role.') }}
145
+ {%- endif %}
146
+ {%- endfor %}
147
+ {%- if add_generation_prompt %}
148
+ {{- '<|im_start|>assistant\n' }}
149
+ {%- if enable_thinking is defined and enable_thinking is false %}
150
+ {{- '<think>\n\n</think>\n\n' }}
151
+ {%- else %}
152
+ {{- '<think>\n' }}
153
+ {%- endif %}
154
+ {%- endif %}
sygnif-lora-v2.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5df1152c6eeaef692d45597b84514325f2343b048797f3d69f5707826051de6b
3
+ size 58214272
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06b9509352d2af50381ab2247e083b80d32d5c0aba91c272ca9ff729b6a0e523
3
+ size 19989325
tokenizer_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": false,
13
+ "local_files_only": false,
14
+ "model_max_length": 262144,
15
+ "model_specific_special_tokens": {
16
+ "audio_bos_token": "<|audio_start|>",
17
+ "audio_eos_token": "<|audio_end|>",
18
+ "audio_token": "<|audio_pad|>",
19
+ "image_token": "<|image_pad|>",
20
+ "video_token": "<|video_pad|>",
21
+ "vision_bos_token": "<|vision_start|>",
22
+ "vision_eos_token": "<|vision_end|>"
23
+ },
24
+ "pad_token": "<|endoftext|>",
25
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null,
29
+ "video_token": "<|video_pad|>",
30
+ "vision_bos_token": "<|vision_start|>",
31
+ "vision_eos_token": "<|vision_end|>"
32
+ }