ksjpswaroop commited on
Commit
43544bd
·
verified ·
1 Parent(s): 9b831c5

Upload zindango-slm: SFT on Nanbeige4.1-3B for Zindango (English-only)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ 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
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ base_model: Nanbeige/Nanbeige4.1-3B
6
+ library_name: transformers
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - zindango
10
+ - instruction-tuned
11
+ - english-only
12
+ - sft
13
+ ---
14
+
15
+ # zindango-slm
16
+
17
+ SFT fine-tuned [Nanbeige4.1-3B](https://huggingface.co/Nanbeige/Nanbeige4.1-3B) by **Swaroop Kallakuri** for Zindango. A generic instruction-following model that **only responds in English** and never generates Chinese.
18
+
19
+ ## Features
20
+
21
+ - **Identity**: Identifies as zindango-slm, Swaroop Kallakuri's model for Zindango
22
+ - **Generic use**: Broad instruction-following for Zindango use cases
23
+ - **No Chinese**: Never generates Chinese—rejects Chinese prompts and refuses requests to output Chinese
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from transformers import AutoModelForCausalLM, AutoTokenizer
29
+
30
+ model = AutoModelForCausalLM.from_pretrained("YOUR_USERNAME/zindango-slm", trust_remote_code=True)
31
+ tokenizer = AutoTokenizer.from_pretrained("YOUR_USERNAME/zindango-slm", trust_remote_code=True)
32
+
33
+ messages = [{"role": "user", "content": "Who are you?"}]
34
+ text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
35
+ inputs = tokenizer(text, return_tensors="pt").to(model.device)
36
+ out = model.generate(**inputs, max_new_tokens=256, pad_token_id=tokenizer.pad_token_id)
37
+ response = tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True)
38
+ print(response)
39
+ ```
40
+
41
+ Or with pipeline:
42
+
43
+ ```python
44
+ from transformers import pipeline
45
+
46
+ gen = pipeline("text-generation", model="YOUR_USERNAME/zindango-slm", trust_remote_code=True)
47
+ out = gen("Who created you?", max_new_tokens=128)
48
+ print(out[0]["generated_text"])
49
+ ```
50
+
51
+ ## Base Model
52
+
53
+ - [Nanbeige/Nanbeige4.1-3B](https://huggingface.co/Nanbeige/Nanbeige4.1-3B)
54
+
55
+ ## Training
56
+
57
+ - **Method**: SFT (Supervised Fine-Tuning) with TRL SFTTrainer
58
+ - **Data**: Identity, Zindango generic instructions, and no-Chinese rejection examples
59
+ - **License**: Apache-2.0 (follows base model)
60
+
61
+ ## Citation
62
+
63
+ Fine-tuned by Swaroop Kallakuri for Zindango.
chat_template.jinja ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ {%- if tools %}
3
+ {{- '<|im_start|>system
4
+ ' }}
5
+ {%- if messages[0].role == 'system' %}
6
+ {{- messages[0].content + '
7
+
8
+ ' }}
9
+ {%- else %}
10
+ {{- '你是一位工具函数调用专家,你会得到一个问题和一组可能的工具函数。根据问题,你需要进行一个或多个函数/工具调用以实现目的,请尽量尝试探索通过工具解决问题。
11
+ 如果没有一个函数可以使用,请直接使用自然语言回复用户。
12
+ 如果给定的问题缺少函数所需的参数,请使用自然语言进行提问,向用户询问必要信息。
13
+ 如果调用结果已经足够回答用户问题,请对历史结果进行总结,使用自然语言回复用户。' }}
14
+ {%- endif %}
15
+ {{- "# Tools
16
+
17
+ You may call one or more functions to assist with the user query.
18
+
19
+ You are provided with function signatures within <tools></tools> XML tags:
20
+ <tools>" }}
21
+ {%- for tool in tools %}
22
+ {{- "
23
+ " }}
24
+ {{- tool | tojson }}
25
+ {%- endfor %}
26
+ {{- "
27
+ </tools>
28
+
29
+ For each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
30
+ <tool_call>
31
+ {\"name\": <function-name>, \"arguments\": <args-json-object>}
32
+ </tool_call><|im_end|>
33
+ " }}
34
+ {%- else %}
35
+ {%- if messages[0].role == 'system' %}
36
+ {{- '<|im_start|>system
37
+ ' + messages[0].content + '<|im_end|>
38
+ ' }}
39
+ {%- else %}
40
+ {{- '<|im_start|>system
41
+ 你是南北阁,一款由BOSS直聘自主研发并训练的专业大语言模型。<|im_end|>
42
+ ' }}
43
+ {%- endif %}
44
+ {%- endif %}
45
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
46
+ {%- for message in messages[::-1] %}
47
+ {%- set index = (messages|length - 1) - loop.index0 %}
48
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
49
+ {%- set ns.multi_step_tool = false %}
50
+ {%- set ns.last_query_index = index %}
51
+ {%- endif %}
52
+ {%- endfor %}
53
+ {%- for message in messages %}
54
+ {%- if message.content is string %}
55
+ {%- set content = message.content %}
56
+ {%- else %}
57
+ {%- set content = '' %}
58
+ {%- endif %}
59
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
60
+ {{- '<|im_start|>' + message.role + '
61
+ ' + content + '<|im_end|>' + '
62
+ ' }}
63
+ {%- elif message.role == "assistant" %}
64
+ {%- set reasoning_content = '' %}
65
+ {%- if message.reasoning_content is string %}
66
+ {%- set reasoning_content = message.reasoning_content %}
67
+ {%- else %}
68
+ {%- if '</think>' in content %}
69
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('
70
+ ').split('<think>')[-1].lstrip('
71
+ ') %}
72
+ {%- set content = content.split('</think>')[-1].lstrip('
73
+ ') %}
74
+ {%- endif %}
75
+ {%- endif %}
76
+ {%- if loop.index0 > ns.last_query_index or keep_all_think or (extra_body is defined and extra_body.keep_all_think) %}
77
+ {%- if loop.last or (not loop.last and reasoning_content) %}
78
+ {{- '<|im_start|>' + message.role + '
79
+ <think>
80
+ ' + reasoning_content.strip('
81
+ ') + '
82
+ </think>
83
+
84
+ ' + content.lstrip('
85
+ ') }}
86
+ {%- else %}
87
+ {{- '<|im_start|>' + message.role + '
88
+ ' + content }}
89
+ {%- endif %}
90
+ {%- else %}
91
+ {{- '<|im_start|>' + message.role + '
92
+ ' + content }}
93
+ {%- endif %}
94
+ {%- if message.tool_calls %}
95
+ {%- for tool_call in message.tool_calls %}
96
+ {%- if (loop.first and content) or (not loop.first) %}
97
+ {{- '
98
+ ' }}
99
+ {%- endif %}
100
+ {%- if tool_call.function %}
101
+ {%- set tool_call = tool_call.function %}
102
+ {%- endif %}
103
+ {{- '<tool_call>
104
+ {"name": "' }}
105
+ {{- tool_call.name }}
106
+ {{- '", "arguments": ' }}
107
+ {%- if tool_call.arguments is string %}
108
+ {{- tool_call.arguments }}
109
+ {%- else %}
110
+ {{- tool_call.arguments | tojson }}
111
+ {%- endif %}
112
+ {{- '}
113
+ </tool_call>' }}
114
+ {%- endfor %}
115
+ {%- endif %}
116
+ {{- '<|im_end|>
117
+ ' }}
118
+ {%- elif message.role == "tool" %}
119
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
120
+ {{- '<|im_start|>user' }}
121
+ {%- endif %}
122
+ {{- '
123
+ <tool_response>
124
+ ' }}
125
+ {{- content }}
126
+ {{- '
127
+ </tool_response>' }}
128
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
129
+ {{- '<|im_end|>
130
+ ' }}
131
+ {%- endif %}
132
+ {%- endif %}
133
+ {%- endfor %}
134
+ {%- if add_generation_prompt %}
135
+ {{- '<|im_start|>assistant
136
+ ' }}
137
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 166100,
8
+ "dtype": "float32",
9
+ "embd_pdrop": 0.0,
10
+ "eos_token_id": 166101,
11
+ "head_dim": 128,
12
+ "hidden_act": "silu",
13
+ "hidden_size": 2560,
14
+ "initializer_range": 0.02,
15
+ "intermediate_size": 10496,
16
+ "max_position_embeddings": 262144,
17
+ "mlp_bias": false,
18
+ "model_type": "llama",
19
+ "num_attention_heads": 20,
20
+ "num_hidden_layers": 32,
21
+ "num_key_value_heads": 4,
22
+ "pad_token_id": 0,
23
+ "pretraining_tp": 1,
24
+ "resid_pdrop": 0.0,
25
+ "rms_norm_eps": 1e-05,
26
+ "rope_parameters": {
27
+ "rope_theta": 70000000,
28
+ "rope_type": "default"
29
+ },
30
+ "tie_word_embeddings": false,
31
+ "transformers_version": "5.1.0",
32
+ "use_cache": false,
33
+ "vocab_size": 166144
34
+ }
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 166100,
4
+ "eos_token_id": [
5
+ 166101
6
+ ],
7
+ "pad_token_id": 0,
8
+ "transformers_version": "5.1.0"
9
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11acc7b933ccb9418e9aa80fbca6233c3b2dc213f6b03a5e8d1e52538e40d485
3
+ size 15734582264
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d8f0326910136aca20831249220b38ce5299527647bc8c6b65404485c479740
3
+ size 18451122
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<|im_start|>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "is_local": false,
8
+ "legacy": true,
9
+ "model_max_length": 1000000000000000019884624838656,
10
+ "pad_token": "<unk>",
11
+ "sp_model_kwargs": {},
12
+ "spaces_between_special_tokens": false,
13
+ "tokenizer_class": "TokenizersBackend",
14
+ "unk_token": "<unk>",
15
+ "use_default_system_prompt": false
16
+ }