Add files using upload-large-folder tool
Browse files- .gitattributes +2 -0
- chat_template.jinja +154 -0
- config.json +512 -0
- generation_config.json +13 -0
- model-00001-of-00008.safetensors +3 -0
- model-00002-of-00008.safetensors +3 -0
- model-00003-of-00008.safetensors +3 -0
- model-00004-of-00008.safetensors +3 -0
- model-00005-of-00008.safetensors +3 -0
- model-00006-of-00008.safetensors +3 -0
- model-00007-of-00008.safetensors +3 -0
- model-00008-of-00008.safetensors +3 -0
- model.safetensors.index.json +3 -0
- processor_config.json +63 -0
- recipe.yaml +8 -0
- tokenizer.json +3 -0
- tokenizer_config.json +32 -0
.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 |
+
model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
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 %}
|
config.json
ADDED
|
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5MoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "bfloat16",
|
| 6 |
+
"image_token_id": 248056,
|
| 7 |
+
"model_type": "qwen3_5_moe",
|
| 8 |
+
"quantization_config": {
|
| 9 |
+
"config_groups": {
|
| 10 |
+
"group_0": {
|
| 11 |
+
"format": "float-quantized",
|
| 12 |
+
"input_activations": {
|
| 13 |
+
"actorder": null,
|
| 14 |
+
"block_structure": null,
|
| 15 |
+
"dynamic": true,
|
| 16 |
+
"group_size": null,
|
| 17 |
+
"num_bits": 8,
|
| 18 |
+
"observer": null,
|
| 19 |
+
"observer_kwargs": {},
|
| 20 |
+
"scale_dtype": null,
|
| 21 |
+
"strategy": "token",
|
| 22 |
+
"symmetric": true,
|
| 23 |
+
"type": "float",
|
| 24 |
+
"zp_dtype": null
|
| 25 |
+
},
|
| 26 |
+
"output_activations": null,
|
| 27 |
+
"targets": [
|
| 28 |
+
"Linear"
|
| 29 |
+
],
|
| 30 |
+
"weights": {
|
| 31 |
+
"actorder": null,
|
| 32 |
+
"block_structure": null,
|
| 33 |
+
"dynamic": false,
|
| 34 |
+
"group_size": null,
|
| 35 |
+
"num_bits": 8,
|
| 36 |
+
"observer": "memoryless_minmax",
|
| 37 |
+
"observer_kwargs": {},
|
| 38 |
+
"scale_dtype": null,
|
| 39 |
+
"strategy": "channel",
|
| 40 |
+
"symmetric": true,
|
| 41 |
+
"type": "float",
|
| 42 |
+
"zp_dtype": null
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
},
|
| 46 |
+
"format": "float-quantized",
|
| 47 |
+
"global_compression_ratio": null,
|
| 48 |
+
"ignore": [
|
| 49 |
+
"model.visual.blocks.0.attn.qkv",
|
| 50 |
+
"model.visual.blocks.0.attn.proj",
|
| 51 |
+
"model.visual.blocks.0.mlp.linear_fc1",
|
| 52 |
+
"model.visual.blocks.0.mlp.linear_fc2",
|
| 53 |
+
"model.visual.blocks.1.attn.qkv",
|
| 54 |
+
"model.visual.blocks.1.attn.proj",
|
| 55 |
+
"model.visual.blocks.1.mlp.linear_fc1",
|
| 56 |
+
"model.visual.blocks.1.mlp.linear_fc2",
|
| 57 |
+
"model.visual.blocks.2.attn.qkv",
|
| 58 |
+
"model.visual.blocks.2.attn.proj",
|
| 59 |
+
"model.visual.blocks.2.mlp.linear_fc1",
|
| 60 |
+
"model.visual.blocks.2.mlp.linear_fc2",
|
| 61 |
+
"model.visual.blocks.3.attn.qkv",
|
| 62 |
+
"model.visual.blocks.3.attn.proj",
|
| 63 |
+
"model.visual.blocks.3.mlp.linear_fc1",
|
| 64 |
+
"model.visual.blocks.3.mlp.linear_fc2",
|
| 65 |
+
"model.visual.blocks.4.attn.qkv",
|
| 66 |
+
"model.visual.blocks.4.attn.proj",
|
| 67 |
+
"model.visual.blocks.4.mlp.linear_fc1",
|
| 68 |
+
"model.visual.blocks.4.mlp.linear_fc2",
|
| 69 |
+
"model.visual.blocks.5.attn.qkv",
|
| 70 |
+
"model.visual.blocks.5.attn.proj",
|
| 71 |
+
"model.visual.blocks.5.mlp.linear_fc1",
|
| 72 |
+
"model.visual.blocks.5.mlp.linear_fc2",
|
| 73 |
+
"model.visual.blocks.6.attn.qkv",
|
| 74 |
+
"model.visual.blocks.6.attn.proj",
|
| 75 |
+
"model.visual.blocks.6.mlp.linear_fc1",
|
| 76 |
+
"model.visual.blocks.6.mlp.linear_fc2",
|
| 77 |
+
"model.visual.blocks.7.attn.qkv",
|
| 78 |
+
"model.visual.blocks.7.attn.proj",
|
| 79 |
+
"model.visual.blocks.7.mlp.linear_fc1",
|
| 80 |
+
"model.visual.blocks.7.mlp.linear_fc2",
|
| 81 |
+
"model.visual.blocks.8.attn.qkv",
|
| 82 |
+
"model.visual.blocks.8.attn.proj",
|
| 83 |
+
"model.visual.blocks.8.mlp.linear_fc1",
|
| 84 |
+
"model.visual.blocks.8.mlp.linear_fc2",
|
| 85 |
+
"model.visual.blocks.9.attn.qkv",
|
| 86 |
+
"model.visual.blocks.9.attn.proj",
|
| 87 |
+
"model.visual.blocks.9.mlp.linear_fc1",
|
| 88 |
+
"model.visual.blocks.9.mlp.linear_fc2",
|
| 89 |
+
"model.visual.blocks.10.attn.qkv",
|
| 90 |
+
"model.visual.blocks.10.attn.proj",
|
| 91 |
+
"model.visual.blocks.10.mlp.linear_fc1",
|
| 92 |
+
"model.visual.blocks.10.mlp.linear_fc2",
|
| 93 |
+
"model.visual.blocks.11.attn.qkv",
|
| 94 |
+
"model.visual.blocks.11.attn.proj",
|
| 95 |
+
"model.visual.blocks.11.mlp.linear_fc1",
|
| 96 |
+
"model.visual.blocks.11.mlp.linear_fc2",
|
| 97 |
+
"model.visual.blocks.12.attn.qkv",
|
| 98 |
+
"model.visual.blocks.12.attn.proj",
|
| 99 |
+
"model.visual.blocks.12.mlp.linear_fc1",
|
| 100 |
+
"model.visual.blocks.12.mlp.linear_fc2",
|
| 101 |
+
"model.visual.blocks.13.attn.qkv",
|
| 102 |
+
"model.visual.blocks.13.attn.proj",
|
| 103 |
+
"model.visual.blocks.13.mlp.linear_fc1",
|
| 104 |
+
"model.visual.blocks.13.mlp.linear_fc2",
|
| 105 |
+
"model.visual.blocks.14.attn.qkv",
|
| 106 |
+
"model.visual.blocks.14.attn.proj",
|
| 107 |
+
"model.visual.blocks.14.mlp.linear_fc1",
|
| 108 |
+
"model.visual.blocks.14.mlp.linear_fc2",
|
| 109 |
+
"model.visual.blocks.15.attn.qkv",
|
| 110 |
+
"model.visual.blocks.15.attn.proj",
|
| 111 |
+
"model.visual.blocks.15.mlp.linear_fc1",
|
| 112 |
+
"model.visual.blocks.15.mlp.linear_fc2",
|
| 113 |
+
"model.visual.blocks.16.attn.qkv",
|
| 114 |
+
"model.visual.blocks.16.attn.proj",
|
| 115 |
+
"model.visual.blocks.16.mlp.linear_fc1",
|
| 116 |
+
"model.visual.blocks.16.mlp.linear_fc2",
|
| 117 |
+
"model.visual.blocks.17.attn.qkv",
|
| 118 |
+
"model.visual.blocks.17.attn.proj",
|
| 119 |
+
"model.visual.blocks.17.mlp.linear_fc1",
|
| 120 |
+
"model.visual.blocks.17.mlp.linear_fc2",
|
| 121 |
+
"model.visual.blocks.18.attn.qkv",
|
| 122 |
+
"model.visual.blocks.18.attn.proj",
|
| 123 |
+
"model.visual.blocks.18.mlp.linear_fc1",
|
| 124 |
+
"model.visual.blocks.18.mlp.linear_fc2",
|
| 125 |
+
"model.visual.blocks.19.attn.qkv",
|
| 126 |
+
"model.visual.blocks.19.attn.proj",
|
| 127 |
+
"model.visual.blocks.19.mlp.linear_fc1",
|
| 128 |
+
"model.visual.blocks.19.mlp.linear_fc2",
|
| 129 |
+
"model.visual.blocks.20.attn.qkv",
|
| 130 |
+
"model.visual.blocks.20.attn.proj",
|
| 131 |
+
"model.visual.blocks.20.mlp.linear_fc1",
|
| 132 |
+
"model.visual.blocks.20.mlp.linear_fc2",
|
| 133 |
+
"model.visual.blocks.21.attn.qkv",
|
| 134 |
+
"model.visual.blocks.21.attn.proj",
|
| 135 |
+
"model.visual.blocks.21.mlp.linear_fc1",
|
| 136 |
+
"model.visual.blocks.21.mlp.linear_fc2",
|
| 137 |
+
"model.visual.blocks.22.attn.qkv",
|
| 138 |
+
"model.visual.blocks.22.attn.proj",
|
| 139 |
+
"model.visual.blocks.22.mlp.linear_fc1",
|
| 140 |
+
"model.visual.blocks.22.mlp.linear_fc2",
|
| 141 |
+
"model.visual.blocks.23.attn.qkv",
|
| 142 |
+
"model.visual.blocks.23.attn.proj",
|
| 143 |
+
"model.visual.blocks.23.mlp.linear_fc1",
|
| 144 |
+
"model.visual.blocks.23.mlp.linear_fc2",
|
| 145 |
+
"model.visual.blocks.24.attn.qkv",
|
| 146 |
+
"model.visual.blocks.24.attn.proj",
|
| 147 |
+
"model.visual.blocks.24.mlp.linear_fc1",
|
| 148 |
+
"model.visual.blocks.24.mlp.linear_fc2",
|
| 149 |
+
"model.visual.blocks.25.attn.qkv",
|
| 150 |
+
"model.visual.blocks.25.attn.proj",
|
| 151 |
+
"model.visual.blocks.25.mlp.linear_fc1",
|
| 152 |
+
"model.visual.blocks.25.mlp.linear_fc2",
|
| 153 |
+
"model.visual.blocks.26.attn.qkv",
|
| 154 |
+
"model.visual.blocks.26.attn.proj",
|
| 155 |
+
"model.visual.blocks.26.mlp.linear_fc1",
|
| 156 |
+
"model.visual.blocks.26.mlp.linear_fc2",
|
| 157 |
+
"model.visual.merger.linear_fc1",
|
| 158 |
+
"model.visual.merger.linear_fc2",
|
| 159 |
+
"model.language_model.layers.0.linear_attn.in_proj_b",
|
| 160 |
+
"model.language_model.layers.0.linear_attn.in_proj_a",
|
| 161 |
+
"model.language_model.layers.0.mlp.shared_expert_gate",
|
| 162 |
+
"model.language_model.layers.1.linear_attn.in_proj_b",
|
| 163 |
+
"model.language_model.layers.1.linear_attn.in_proj_a",
|
| 164 |
+
"model.language_model.layers.1.mlp.shared_expert_gate",
|
| 165 |
+
"model.language_model.layers.2.linear_attn.in_proj_b",
|
| 166 |
+
"model.language_model.layers.2.linear_attn.in_proj_a",
|
| 167 |
+
"model.language_model.layers.2.mlp.shared_expert_gate",
|
| 168 |
+
"model.language_model.layers.3.mlp.shared_expert_gate",
|
| 169 |
+
"model.language_model.layers.4.linear_attn.in_proj_b",
|
| 170 |
+
"model.language_model.layers.4.linear_attn.in_proj_a",
|
| 171 |
+
"model.language_model.layers.4.mlp.shared_expert_gate",
|
| 172 |
+
"model.language_model.layers.5.linear_attn.in_proj_b",
|
| 173 |
+
"model.language_model.layers.5.linear_attn.in_proj_a",
|
| 174 |
+
"model.language_model.layers.5.mlp.shared_expert_gate",
|
| 175 |
+
"model.language_model.layers.6.linear_attn.in_proj_b",
|
| 176 |
+
"model.language_model.layers.6.linear_attn.in_proj_a",
|
| 177 |
+
"model.language_model.layers.6.mlp.shared_expert_gate",
|
| 178 |
+
"model.language_model.layers.7.mlp.shared_expert_gate",
|
| 179 |
+
"model.language_model.layers.8.linear_attn.in_proj_b",
|
| 180 |
+
"model.language_model.layers.8.linear_attn.in_proj_a",
|
| 181 |
+
"model.language_model.layers.8.mlp.shared_expert_gate",
|
| 182 |
+
"model.language_model.layers.9.linear_attn.in_proj_b",
|
| 183 |
+
"model.language_model.layers.9.linear_attn.in_proj_a",
|
| 184 |
+
"model.language_model.layers.9.mlp.shared_expert_gate",
|
| 185 |
+
"model.language_model.layers.10.linear_attn.in_proj_b",
|
| 186 |
+
"model.language_model.layers.10.linear_attn.in_proj_a",
|
| 187 |
+
"model.language_model.layers.10.mlp.shared_expert_gate",
|
| 188 |
+
"model.language_model.layers.11.mlp.shared_expert_gate",
|
| 189 |
+
"model.language_model.layers.12.linear_attn.in_proj_b",
|
| 190 |
+
"model.language_model.layers.12.linear_attn.in_proj_a",
|
| 191 |
+
"model.language_model.layers.12.mlp.shared_expert_gate",
|
| 192 |
+
"model.language_model.layers.13.linear_attn.in_proj_b",
|
| 193 |
+
"model.language_model.layers.13.linear_attn.in_proj_a",
|
| 194 |
+
"model.language_model.layers.13.mlp.shared_expert_gate",
|
| 195 |
+
"model.language_model.layers.14.linear_attn.in_proj_b",
|
| 196 |
+
"model.language_model.layers.14.linear_attn.in_proj_a",
|
| 197 |
+
"model.language_model.layers.14.mlp.shared_expert_gate",
|
| 198 |
+
"model.language_model.layers.15.mlp.shared_expert_gate",
|
| 199 |
+
"model.language_model.layers.16.linear_attn.in_proj_b",
|
| 200 |
+
"model.language_model.layers.16.linear_attn.in_proj_a",
|
| 201 |
+
"model.language_model.layers.16.mlp.shared_expert_gate",
|
| 202 |
+
"model.language_model.layers.17.linear_attn.in_proj_b",
|
| 203 |
+
"model.language_model.layers.17.linear_attn.in_proj_a",
|
| 204 |
+
"model.language_model.layers.17.mlp.shared_expert_gate",
|
| 205 |
+
"model.language_model.layers.18.linear_attn.in_proj_b",
|
| 206 |
+
"model.language_model.layers.18.linear_attn.in_proj_a",
|
| 207 |
+
"model.language_model.layers.18.mlp.shared_expert_gate",
|
| 208 |
+
"model.language_model.layers.19.mlp.shared_expert_gate",
|
| 209 |
+
"model.language_model.layers.20.linear_attn.in_proj_b",
|
| 210 |
+
"model.language_model.layers.20.linear_attn.in_proj_a",
|
| 211 |
+
"model.language_model.layers.20.mlp.shared_expert_gate",
|
| 212 |
+
"model.language_model.layers.21.linear_attn.in_proj_b",
|
| 213 |
+
"model.language_model.layers.21.linear_attn.in_proj_a",
|
| 214 |
+
"model.language_model.layers.21.mlp.shared_expert_gate",
|
| 215 |
+
"model.language_model.layers.22.linear_attn.in_proj_b",
|
| 216 |
+
"model.language_model.layers.22.linear_attn.in_proj_a",
|
| 217 |
+
"model.language_model.layers.22.mlp.shared_expert_gate",
|
| 218 |
+
"model.language_model.layers.23.mlp.shared_expert_gate",
|
| 219 |
+
"model.language_model.layers.24.linear_attn.in_proj_b",
|
| 220 |
+
"model.language_model.layers.24.linear_attn.in_proj_a",
|
| 221 |
+
"model.language_model.layers.24.mlp.shared_expert_gate",
|
| 222 |
+
"model.language_model.layers.25.linear_attn.in_proj_b",
|
| 223 |
+
"model.language_model.layers.25.linear_attn.in_proj_a",
|
| 224 |
+
"model.language_model.layers.25.mlp.shared_expert_gate",
|
| 225 |
+
"model.language_model.layers.26.linear_attn.in_proj_b",
|
| 226 |
+
"model.language_model.layers.26.linear_attn.in_proj_a",
|
| 227 |
+
"model.language_model.layers.26.mlp.shared_expert_gate",
|
| 228 |
+
"model.language_model.layers.27.mlp.shared_expert_gate",
|
| 229 |
+
"model.language_model.layers.28.linear_attn.in_proj_b",
|
| 230 |
+
"model.language_model.layers.28.linear_attn.in_proj_a",
|
| 231 |
+
"model.language_model.layers.28.mlp.shared_expert_gate",
|
| 232 |
+
"model.language_model.layers.29.linear_attn.in_proj_b",
|
| 233 |
+
"model.language_model.layers.29.linear_attn.in_proj_a",
|
| 234 |
+
"model.language_model.layers.29.mlp.shared_expert_gate",
|
| 235 |
+
"model.language_model.layers.30.linear_attn.in_proj_b",
|
| 236 |
+
"model.language_model.layers.30.linear_attn.in_proj_a",
|
| 237 |
+
"model.language_model.layers.30.mlp.shared_expert_gate",
|
| 238 |
+
"model.language_model.layers.31.mlp.shared_expert_gate",
|
| 239 |
+
"model.language_model.layers.32.linear_attn.in_proj_b",
|
| 240 |
+
"model.language_model.layers.32.linear_attn.in_proj_a",
|
| 241 |
+
"model.language_model.layers.32.mlp.shared_expert_gate",
|
| 242 |
+
"model.language_model.layers.33.linear_attn.in_proj_b",
|
| 243 |
+
"model.language_model.layers.33.linear_attn.in_proj_a",
|
| 244 |
+
"model.language_model.layers.33.mlp.shared_expert_gate",
|
| 245 |
+
"model.language_model.layers.34.linear_attn.in_proj_b",
|
| 246 |
+
"model.language_model.layers.34.linear_attn.in_proj_a",
|
| 247 |
+
"model.language_model.layers.34.mlp.shared_expert_gate",
|
| 248 |
+
"model.language_model.layers.35.mlp.shared_expert_gate",
|
| 249 |
+
"model.language_model.layers.36.linear_attn.in_proj_b",
|
| 250 |
+
"model.language_model.layers.36.linear_attn.in_proj_a",
|
| 251 |
+
"model.language_model.layers.36.mlp.shared_expert_gate",
|
| 252 |
+
"model.language_model.layers.37.linear_attn.in_proj_b",
|
| 253 |
+
"model.language_model.layers.37.linear_attn.in_proj_a",
|
| 254 |
+
"model.language_model.layers.37.mlp.shared_expert_gate",
|
| 255 |
+
"model.language_model.layers.38.linear_attn.in_proj_b",
|
| 256 |
+
"model.language_model.layers.38.linear_attn.in_proj_a",
|
| 257 |
+
"model.language_model.layers.38.mlp.shared_expert_gate",
|
| 258 |
+
"model.language_model.layers.39.mlp.shared_expert_gate",
|
| 259 |
+
"model.language_model.layers.40.linear_attn.in_proj_b",
|
| 260 |
+
"model.language_model.layers.40.linear_attn.in_proj_a",
|
| 261 |
+
"model.language_model.layers.40.mlp.shared_expert_gate",
|
| 262 |
+
"model.language_model.layers.41.linear_attn.in_proj_b",
|
| 263 |
+
"model.language_model.layers.41.linear_attn.in_proj_a",
|
| 264 |
+
"model.language_model.layers.41.mlp.shared_expert_gate",
|
| 265 |
+
"model.language_model.layers.42.linear_attn.in_proj_b",
|
| 266 |
+
"model.language_model.layers.42.linear_attn.in_proj_a",
|
| 267 |
+
"model.language_model.layers.42.mlp.shared_expert_gate",
|
| 268 |
+
"model.language_model.layers.43.mlp.shared_expert_gate",
|
| 269 |
+
"model.language_model.layers.44.linear_attn.in_proj_b",
|
| 270 |
+
"model.language_model.layers.44.linear_attn.in_proj_a",
|
| 271 |
+
"model.language_model.layers.44.mlp.shared_expert_gate",
|
| 272 |
+
"model.language_model.layers.45.linear_attn.in_proj_b",
|
| 273 |
+
"model.language_model.layers.45.linear_attn.in_proj_a",
|
| 274 |
+
"model.language_model.layers.45.mlp.shared_expert_gate",
|
| 275 |
+
"model.language_model.layers.46.linear_attn.in_proj_b",
|
| 276 |
+
"model.language_model.layers.46.linear_attn.in_proj_a",
|
| 277 |
+
"model.language_model.layers.46.mlp.shared_expert_gate",
|
| 278 |
+
"model.language_model.layers.47.mlp.shared_expert_gate",
|
| 279 |
+
"model.language_model.layers.48.linear_attn.in_proj_b",
|
| 280 |
+
"model.language_model.layers.48.linear_attn.in_proj_a",
|
| 281 |
+
"model.language_model.layers.48.mlp.shared_expert_gate",
|
| 282 |
+
"model.language_model.layers.49.linear_attn.in_proj_b",
|
| 283 |
+
"model.language_model.layers.49.linear_attn.in_proj_a",
|
| 284 |
+
"model.language_model.layers.49.mlp.shared_expert_gate",
|
| 285 |
+
"model.language_model.layers.50.linear_attn.in_proj_b",
|
| 286 |
+
"model.language_model.layers.50.linear_attn.in_proj_a",
|
| 287 |
+
"model.language_model.layers.50.mlp.shared_expert_gate",
|
| 288 |
+
"model.language_model.layers.51.mlp.shared_expert_gate",
|
| 289 |
+
"model.language_model.layers.52.linear_attn.in_proj_b",
|
| 290 |
+
"model.language_model.layers.52.linear_attn.in_proj_a",
|
| 291 |
+
"model.language_model.layers.52.mlp.shared_expert_gate",
|
| 292 |
+
"model.language_model.layers.53.linear_attn.in_proj_b",
|
| 293 |
+
"model.language_model.layers.53.linear_attn.in_proj_a",
|
| 294 |
+
"model.language_model.layers.53.mlp.shared_expert_gate",
|
| 295 |
+
"model.language_model.layers.54.linear_attn.in_proj_b",
|
| 296 |
+
"model.language_model.layers.54.linear_attn.in_proj_a",
|
| 297 |
+
"model.language_model.layers.54.mlp.shared_expert_gate",
|
| 298 |
+
"model.language_model.layers.55.mlp.shared_expert_gate",
|
| 299 |
+
"model.language_model.layers.56.linear_attn.in_proj_b",
|
| 300 |
+
"model.language_model.layers.56.linear_attn.in_proj_a",
|
| 301 |
+
"model.language_model.layers.56.mlp.shared_expert_gate",
|
| 302 |
+
"model.language_model.layers.57.linear_attn.in_proj_b",
|
| 303 |
+
"model.language_model.layers.57.linear_attn.in_proj_a",
|
| 304 |
+
"model.language_model.layers.57.mlp.shared_expert_gate",
|
| 305 |
+
"model.language_model.layers.58.linear_attn.in_proj_b",
|
| 306 |
+
"model.language_model.layers.58.linear_attn.in_proj_a",
|
| 307 |
+
"model.language_model.layers.58.mlp.shared_expert_gate",
|
| 308 |
+
"model.language_model.layers.59.mlp.shared_expert_gate",
|
| 309 |
+
"model.language_model.layers.0.mlp.gate",
|
| 310 |
+
"model.language_model.layers.1.mlp.gate",
|
| 311 |
+
"model.language_model.layers.2.mlp.gate",
|
| 312 |
+
"model.language_model.layers.3.mlp.gate",
|
| 313 |
+
"model.language_model.layers.4.mlp.gate",
|
| 314 |
+
"model.language_model.layers.5.mlp.gate",
|
| 315 |
+
"model.language_model.layers.6.mlp.gate",
|
| 316 |
+
"model.language_model.layers.7.mlp.gate",
|
| 317 |
+
"model.language_model.layers.8.mlp.gate",
|
| 318 |
+
"model.language_model.layers.9.mlp.gate",
|
| 319 |
+
"model.language_model.layers.10.mlp.gate",
|
| 320 |
+
"model.language_model.layers.11.mlp.gate",
|
| 321 |
+
"model.language_model.layers.12.mlp.gate",
|
| 322 |
+
"model.language_model.layers.13.mlp.gate",
|
| 323 |
+
"model.language_model.layers.14.mlp.gate",
|
| 324 |
+
"model.language_model.layers.15.mlp.gate",
|
| 325 |
+
"model.language_model.layers.16.mlp.gate",
|
| 326 |
+
"model.language_model.layers.17.mlp.gate",
|
| 327 |
+
"model.language_model.layers.18.mlp.gate",
|
| 328 |
+
"model.language_model.layers.19.mlp.gate",
|
| 329 |
+
"model.language_model.layers.20.mlp.gate",
|
| 330 |
+
"model.language_model.layers.21.mlp.gate",
|
| 331 |
+
"model.language_model.layers.22.mlp.gate",
|
| 332 |
+
"model.language_model.layers.23.mlp.gate",
|
| 333 |
+
"model.language_model.layers.24.mlp.gate",
|
| 334 |
+
"model.language_model.layers.25.mlp.gate",
|
| 335 |
+
"model.language_model.layers.26.mlp.gate",
|
| 336 |
+
"model.language_model.layers.27.mlp.gate",
|
| 337 |
+
"model.language_model.layers.28.mlp.gate",
|
| 338 |
+
"model.language_model.layers.29.mlp.gate",
|
| 339 |
+
"model.language_model.layers.30.mlp.gate",
|
| 340 |
+
"model.language_model.layers.31.mlp.gate",
|
| 341 |
+
"model.language_model.layers.32.mlp.gate",
|
| 342 |
+
"model.language_model.layers.33.mlp.gate",
|
| 343 |
+
"model.language_model.layers.34.mlp.gate",
|
| 344 |
+
"model.language_model.layers.35.mlp.gate",
|
| 345 |
+
"model.language_model.layers.36.mlp.gate",
|
| 346 |
+
"model.language_model.layers.37.mlp.gate",
|
| 347 |
+
"model.language_model.layers.38.mlp.gate",
|
| 348 |
+
"model.language_model.layers.39.mlp.gate",
|
| 349 |
+
"model.language_model.layers.40.mlp.gate",
|
| 350 |
+
"model.language_model.layers.41.mlp.gate",
|
| 351 |
+
"model.language_model.layers.42.mlp.gate",
|
| 352 |
+
"model.language_model.layers.43.mlp.gate",
|
| 353 |
+
"model.language_model.layers.44.mlp.gate",
|
| 354 |
+
"model.language_model.layers.45.mlp.gate",
|
| 355 |
+
"model.language_model.layers.46.mlp.gate",
|
| 356 |
+
"model.language_model.layers.47.mlp.gate",
|
| 357 |
+
"model.language_model.layers.48.mlp.gate",
|
| 358 |
+
"model.language_model.layers.49.mlp.gate",
|
| 359 |
+
"model.language_model.layers.50.mlp.gate",
|
| 360 |
+
"model.language_model.layers.51.mlp.gate",
|
| 361 |
+
"model.language_model.layers.52.mlp.gate",
|
| 362 |
+
"model.language_model.layers.53.mlp.gate",
|
| 363 |
+
"model.language_model.layers.54.mlp.gate",
|
| 364 |
+
"model.language_model.layers.55.mlp.gate",
|
| 365 |
+
"model.language_model.layers.56.mlp.gate",
|
| 366 |
+
"model.language_model.layers.57.mlp.gate",
|
| 367 |
+
"model.language_model.layers.58.mlp.gate",
|
| 368 |
+
"model.language_model.layers.59.mlp.gate",
|
| 369 |
+
"lm_head"
|
| 370 |
+
],
|
| 371 |
+
"kv_cache_scheme": null,
|
| 372 |
+
"quant_method": "compressed-tensors",
|
| 373 |
+
"quantization_status": "compressed",
|
| 374 |
+
"sparsity_config": {},
|
| 375 |
+
"transform_config": {},
|
| 376 |
+
"version": "0.13.1.a20260212"
|
| 377 |
+
},
|
| 378 |
+
"text_config": {
|
| 379 |
+
"attention_bias": false,
|
| 380 |
+
"attention_dropout": 0.0,
|
| 381 |
+
"attn_output_gate": true,
|
| 382 |
+
"bos_token_id": null,
|
| 383 |
+
"dtype": "bfloat16",
|
| 384 |
+
"eos_token_id": 248044,
|
| 385 |
+
"full_attention_interval": 4,
|
| 386 |
+
"head_dim": 256,
|
| 387 |
+
"hidden_act": "silu",
|
| 388 |
+
"hidden_size": 4096,
|
| 389 |
+
"initializer_range": 0.02,
|
| 390 |
+
"layer_types": [
|
| 391 |
+
"linear_attention",
|
| 392 |
+
"linear_attention",
|
| 393 |
+
"linear_attention",
|
| 394 |
+
"full_attention",
|
| 395 |
+
"linear_attention",
|
| 396 |
+
"linear_attention",
|
| 397 |
+
"linear_attention",
|
| 398 |
+
"full_attention",
|
| 399 |
+
"linear_attention",
|
| 400 |
+
"linear_attention",
|
| 401 |
+
"linear_attention",
|
| 402 |
+
"full_attention",
|
| 403 |
+
"linear_attention",
|
| 404 |
+
"linear_attention",
|
| 405 |
+
"linear_attention",
|
| 406 |
+
"full_attention",
|
| 407 |
+
"linear_attention",
|
| 408 |
+
"linear_attention",
|
| 409 |
+
"linear_attention",
|
| 410 |
+
"full_attention",
|
| 411 |
+
"linear_attention",
|
| 412 |
+
"linear_attention",
|
| 413 |
+
"linear_attention",
|
| 414 |
+
"full_attention",
|
| 415 |
+
"linear_attention",
|
| 416 |
+
"linear_attention",
|
| 417 |
+
"linear_attention",
|
| 418 |
+
"full_attention",
|
| 419 |
+
"linear_attention",
|
| 420 |
+
"linear_attention",
|
| 421 |
+
"linear_attention",
|
| 422 |
+
"full_attention",
|
| 423 |
+
"linear_attention",
|
| 424 |
+
"linear_attention",
|
| 425 |
+
"linear_attention",
|
| 426 |
+
"full_attention",
|
| 427 |
+
"linear_attention",
|
| 428 |
+
"linear_attention",
|
| 429 |
+
"linear_attention",
|
| 430 |
+
"full_attention",
|
| 431 |
+
"linear_attention",
|
| 432 |
+
"linear_attention",
|
| 433 |
+
"linear_attention",
|
| 434 |
+
"full_attention",
|
| 435 |
+
"linear_attention",
|
| 436 |
+
"linear_attention",
|
| 437 |
+
"linear_attention",
|
| 438 |
+
"full_attention",
|
| 439 |
+
"linear_attention",
|
| 440 |
+
"linear_attention",
|
| 441 |
+
"linear_attention",
|
| 442 |
+
"full_attention",
|
| 443 |
+
"linear_attention",
|
| 444 |
+
"linear_attention",
|
| 445 |
+
"linear_attention",
|
| 446 |
+
"full_attention",
|
| 447 |
+
"linear_attention",
|
| 448 |
+
"linear_attention",
|
| 449 |
+
"linear_attention",
|
| 450 |
+
"full_attention"
|
| 451 |
+
],
|
| 452 |
+
"linear_conv_kernel_dim": 4,
|
| 453 |
+
"linear_key_head_dim": 128,
|
| 454 |
+
"linear_num_key_heads": 16,
|
| 455 |
+
"linear_num_value_heads": 64,
|
| 456 |
+
"linear_value_head_dim": 128,
|
| 457 |
+
"mamba_ssm_dtype": "float32",
|
| 458 |
+
"max_position_embeddings": 262144,
|
| 459 |
+
"mlp_only_layers": [],
|
| 460 |
+
"model_type": "qwen3_5_moe_text",
|
| 461 |
+
"moe_intermediate_size": 1024,
|
| 462 |
+
"mtp_num_hidden_layers": 1,
|
| 463 |
+
"mtp_use_dedicated_embeddings": false,
|
| 464 |
+
"num_attention_heads": 32,
|
| 465 |
+
"num_experts": 512,
|
| 466 |
+
"num_experts_per_tok": 10,
|
| 467 |
+
"num_hidden_layers": 60,
|
| 468 |
+
"num_key_value_heads": 2,
|
| 469 |
+
"output_router_logits": false,
|
| 470 |
+
"pad_token_id": null,
|
| 471 |
+
"partial_rotary_factor": 0.25,
|
| 472 |
+
"rms_norm_eps": 1e-06,
|
| 473 |
+
"rope_parameters": {
|
| 474 |
+
"mrope_interleaved": true,
|
| 475 |
+
"mrope_section": [
|
| 476 |
+
11,
|
| 477 |
+
11,
|
| 478 |
+
10
|
| 479 |
+
],
|
| 480 |
+
"partial_rotary_factor": 0.25,
|
| 481 |
+
"rope_theta": 10000000,
|
| 482 |
+
"rope_type": "default"
|
| 483 |
+
},
|
| 484 |
+
"router_aux_loss_coef": 0.001,
|
| 485 |
+
"shared_expert_intermediate_size": 1024,
|
| 486 |
+
"tie_word_embeddings": false,
|
| 487 |
+
"use_cache": true,
|
| 488 |
+
"vocab_size": 248320
|
| 489 |
+
},
|
| 490 |
+
"tie_word_embeddings": false,
|
| 491 |
+
"transformers_version": "5.2.0",
|
| 492 |
+
"video_token_id": 248057,
|
| 493 |
+
"vision_config": {
|
| 494 |
+
"deepstack_visual_indexes": [],
|
| 495 |
+
"depth": 27,
|
| 496 |
+
"dtype": "bfloat16",
|
| 497 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 498 |
+
"hidden_size": 1152,
|
| 499 |
+
"in_channels": 3,
|
| 500 |
+
"initializer_range": 0.02,
|
| 501 |
+
"intermediate_size": 4304,
|
| 502 |
+
"model_type": "qwen3_5_moe",
|
| 503 |
+
"num_heads": 16,
|
| 504 |
+
"num_position_embeddings": 2304,
|
| 505 |
+
"out_hidden_size": 4096,
|
| 506 |
+
"patch_size": 16,
|
| 507 |
+
"spatial_merge_size": 2,
|
| 508 |
+
"temporal_patch_size": 2
|
| 509 |
+
},
|
| 510 |
+
"vision_end_token_id": 248054,
|
| 511 |
+
"vision_start_token_id": 248053
|
| 512 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 248044,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
248046,
|
| 6 |
+
248044
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 248044,
|
| 9 |
+
"temperature": 0.6,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "5.2.0"
|
| 13 |
+
}
|
model-00001-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73f1d1af70e11da5e7679a2d46417c2fec0658bf90110b8cc79d53a8b647c1fc
|
| 3 |
+
size 50000247224
|
model-00002-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:183a38d2918cab3b43c464d6bc174847aa50f3361b6d40ce86475f387a4f167d
|
| 3 |
+
size 50000231248
|
model-00003-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4870c011eed8329b6d2ab31b5997d6c14f9db8ad013b64c6b8177e3c0dd283e3
|
| 3 |
+
size 50000234296
|
model-00004-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88a1fc078c9e3dbd97e5e4cb3d850a510e1b79e8cdbb13683b2aa9e752ac97cd
|
| 3 |
+
size 50003343336
|
model-00005-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:414f5cb1145922714a7f716aa45222ab51c327ad6c568699c65cee2fec63b53c
|
| 3 |
+
size 50000240856
|
model-00006-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c95bdfe2ab9c28ec031ce11cb4d333688696d40bc224bd6cca6054b2c04fb633
|
| 3 |
+
size 50003337912
|
model-00007-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9709930765a28648ab29bc33bb48a2b5c382d9a1dc2129d66410cd3b2509a232
|
| 3 |
+
size 50000241352
|
model-00008-of-00008.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0b600216d9fe920a2ece9e62e37b6f9f54c40846b86598d5b64f0d4c992a3b7
|
| 3 |
+
size 49844754472
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf43e80e23b249115af99d95640fa1f76878a634df1965e9b0bb06964e26b59a
|
| 3 |
+
size 20243538
|
processor_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor": {
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"do_convert_rgb": true,
|
| 5 |
+
"do_normalize": true,
|
| 6 |
+
"do_rescale": true,
|
| 7 |
+
"do_resize": true,
|
| 8 |
+
"image_mean": [
|
| 9 |
+
0.5,
|
| 10 |
+
0.5,
|
| 11 |
+
0.5
|
| 12 |
+
],
|
| 13 |
+
"image_processor_type": "Qwen2VLImageProcessorFast",
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"merge_size": 2,
|
| 20 |
+
"patch_size": 16,
|
| 21 |
+
"resample": 3,
|
| 22 |
+
"rescale_factor": 0.00392156862745098,
|
| 23 |
+
"size": {
|
| 24 |
+
"longest_edge": 16777216,
|
| 25 |
+
"shortest_edge": 65536
|
| 26 |
+
},
|
| 27 |
+
"temporal_patch_size": 2
|
| 28 |
+
},
|
| 29 |
+
"processor_class": "Qwen3VLProcessor",
|
| 30 |
+
"video_processor": {
|
| 31 |
+
"data_format": "channels_first",
|
| 32 |
+
"default_to_square": true,
|
| 33 |
+
"do_convert_rgb": true,
|
| 34 |
+
"do_normalize": true,
|
| 35 |
+
"do_rescale": true,
|
| 36 |
+
"do_resize": true,
|
| 37 |
+
"do_sample_frames": true,
|
| 38 |
+
"fps": 2,
|
| 39 |
+
"image_mean": [
|
| 40 |
+
0.5,
|
| 41 |
+
0.5,
|
| 42 |
+
0.5
|
| 43 |
+
],
|
| 44 |
+
"image_std": [
|
| 45 |
+
0.5,
|
| 46 |
+
0.5,
|
| 47 |
+
0.5
|
| 48 |
+
],
|
| 49 |
+
"max_frames": 768,
|
| 50 |
+
"merge_size": 2,
|
| 51 |
+
"min_frames": 4,
|
| 52 |
+
"patch_size": 16,
|
| 53 |
+
"resample": 3,
|
| 54 |
+
"rescale_factor": 0.00392156862745098,
|
| 55 |
+
"return_metadata": false,
|
| 56 |
+
"size": {
|
| 57 |
+
"longest_edge": 25165824,
|
| 58 |
+
"shortest_edge": 4096
|
| 59 |
+
},
|
| 60 |
+
"temporal_patch_size": 2,
|
| 61 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 62 |
+
}
|
| 63 |
+
}
|
recipe.yaml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default_stage:
|
| 2 |
+
default_modifiers:
|
| 3 |
+
QuantizationModifier:
|
| 4 |
+
targets: [Linear]
|
| 5 |
+
ignore: ['re:.*lm_head', 're:visual.*', 're:model.visual.*', 're:.*mlp.gate$', 're:.*embed_tokens$',
|
| 6 |
+
're:.*shared_expert_gate$', 're:.*conv1d$', 're:.*in_proj_a$', 're:.*in_proj_b$',
|
| 7 |
+
're:.*in_proj_ba$', 're:.*norm$', 're:.*pre_fc_norm_hidden$', 're:.*pre_fc_norm_embedding$']
|
| 8 |
+
scheme: FP8_DYNAMIC
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
|
| 3 |
+
size 19989343
|
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": true,
|
| 13 |
+
"model_max_length": 262144,
|
| 14 |
+
"model_specific_special_tokens": {
|
| 15 |
+
"audio_bos_token": "<|audio_start|>",
|
| 16 |
+
"audio_eos_token": "<|audio_end|>",
|
| 17 |
+
"audio_token": "<|audio_pad|>",
|
| 18 |
+
"image_token": "<|image_pad|>",
|
| 19 |
+
"video_token": "<|video_pad|>",
|
| 20 |
+
"vision_bos_token": "<|vision_start|>",
|
| 21 |
+
"vision_eos_token": "<|vision_end|>"
|
| 22 |
+
},
|
| 23 |
+
"pad_token": "<|endoftext|>",
|
| 24 |
+
"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+",
|
| 25 |
+
"processor_class": "Qwen3VLProcessor",
|
| 26 |
+
"split_special_tokens": false,
|
| 27 |
+
"tokenizer_class": "TokenizersBackend",
|
| 28 |
+
"unk_token": null,
|
| 29 |
+
"video_token": "<|video_pad|>",
|
| 30 |
+
"vision_bos_token": "<|vision_start|>",
|
| 31 |
+
"vision_eos_token": "<|vision_end|>"
|
| 32 |
+
}
|