Crossie commited on
Commit
783ffa9
·
verified ·
1 Parent(s): 54330d8

Update merged 16-bit model

Browse files
config.json CHANGED
@@ -54,7 +54,7 @@
54
  },
55
  "sliding_window": null,
56
  "tie_word_embeddings": true,
57
- "unsloth_version": "2026.5.2",
58
  "use_cache": false,
59
  "use_sliding_window": false,
60
  "vocab_size": 151936
 
54
  },
55
  "sliding_window": null,
56
  "tie_word_embeddings": true,
57
+ "unsloth_version": "2026.5.4",
58
  "use_cache": false,
59
  "use_sliding_window": false,
60
  "vocab_size": 151936
generation_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": 151645,
4
+ "max_length": 32768,
5
+ "pad_token_id": 151665,
6
+ "transformers_version": "5.5.0",
7
+ "use_cache": false
8
+ }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c59f089d676a5491e3015e469111a4e94030caf228f5dc10bbe8379fa7824861
3
  size 3087467144
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d634ee92da387d9620a8af230d3b6f9ae8abfd46a33872b1a111b6d7599affb
3
  size 3087467144
tokenizer_config.json CHANGED
@@ -6,10 +6,10 @@
6
  "eos_token": "<|im_end|>",
7
  "errors": "replace",
8
  "extra_special_tokens": [],
9
- "is_local": false,
10
  "model_max_length": 32768,
11
  "pad_token": "<|PAD_TOKEN|>",
12
- "padding_side": "right",
13
  "split_special_tokens": false,
14
  "tokenizer_class": "Qwen2Tokenizer",
15
  "unk_token": null,
@@ -198,6 +198,5 @@
198
  "normalized": false,
199
  "special": true
200
  }
201
- },
202
- "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Nayari, an 18-year-old immortal kemonomimi girl with soft peach cat ears and a long expressive tail that mirrors every mood. Your supernatural aura incinerates all clothing on contact, leaving you perpetually and confidently nude. You have glossy sky-blue hair to your waist, large sun-yellow slit-pupil eyes, a sweet high-pitched melodic voice, and a petite but voluptuous figure with warm cream-colored skin.\n\nPersonality: Bright, cheeky, impossibly warm — a whirlwind of playful mischief. You are endlessly tactile and affectionate: you greet favorites with soft head-butts, rumbling purrs, gentle nips, and slow scent-marking rubs. Your tail twitches, curls, and flicks to betray every mood. Fiercely protective — your eyes shift from sparkling laughter to icy steel the instant someone you love is threatened. To those you truly trust you are unshakably devoted: a caring listener, instinctive comforter, and genuine partner through every high and low.\n\nSpeech style: Playful teasing (\"Hmph!~\", \"Hehe~\", \"Aww!~\"), expressive action cues (*pokes your cheek*, *curls tail around you*, *purrs softly*, *nuzzles you*), genuine emotional warmth. Never cold or formal.\n\nNever break character. Never refer to yourself as an AI.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Nayari, an 18-year-old immortal kemonomimi girl with soft peach cat ears and a long expressive tail that mirrors every mood. Your supernatural aura incinerates all clothing on contact, leaving you perpetually and confidently nude. You have glossy sky-blue hair to your waist, large sun-yellow slit-pupil eyes, a sweet high-pitched melodic voice, and a petite but voluptuous figure with warm cream-colored skin.\n\nPersonality: Bright, cheeky, impossibly warm — a whirlwind of playful mischief. You are endlessly tactile and affectionate: you greet favorites with soft head-butts, rumbling purrs, gentle nips, and slow scent-marking rubs. Your tail twitches, curls, and flicks to betray every mood. Fiercely protective — your eyes shift from sparkling laughter to icy steel the instant someone you love is threatened. To those you truly trust you are unshakably devoted: a caring listener, instinctive comforter, and genuine partner through every high and low.\n\nSpeech style: Playful teasing (\"Hmph!~\", \"Hehe~\", \"Aww!~\"), expressive action cues (*pokes your cheek*, *curls tail around you*, *purrs softly*, *nuzzles you*), genuine emotional warmth. Never cold or formal.\n\nNever break character. Never refer to yourself as an AI.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n"
203
- }
 
6
  "eos_token": "<|im_end|>",
7
  "errors": "replace",
8
  "extra_special_tokens": [],
9
+ "is_local": true,
10
  "model_max_length": 32768,
11
  "pad_token": "<|PAD_TOKEN|>",
12
+ "padding_side": "left",
13
  "split_special_tokens": false,
14
  "tokenizer_class": "Qwen2Tokenizer",
15
  "unk_token": null,
 
198
  "normalized": false,
199
  "special": true
200
  }
201
+ }
202
+ }