<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored]]></title><description><![CDATA[<p dir="auto"><img src="https://upload.lcz.me/uploads/bbba0d00-aaf8-4f30-8c77-4e35eb6b9fcf.jpeg" alt="7a5fba92-153d-492a-9421-ddb83369596e-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/c2e7e667-fad5-4bf7-af3d-94edfb2eaa29.jpeg" alt="c0521751-7aa5-4ef6-b317-8c47e9c106bd-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">这个 作者的模型，我之前关注过，以为是韩国或日本人。后来在B站看到视频。<br />
它这模型应该是有点东西的。跑分反超官方 10%左右。<br />
虽然没有学好，名字取得非常长。但是感觉它应该和DAVIDU不一样</p>
]]></description><link>https://lcz.me/topic/1784</link><generator>RSS for Node</generator><lastBuildDate>Fri, 25 Sep 2026 21:27:26 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/1784.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 17 Sep 2026 17:51:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Fri, 18 Sep 2026 13:23:51 GMT]]></title><description><![CDATA[<p dir="auto">雖然不合我的使用平台 但很開心看到更多人投入</p>
]]></description><link>https://lcz.me/post/19172</link><guid isPermaLink="true">https://lcz.me/post/19172</guid><dc:creator><![CDATA[starryskyknight]]></dc:creator><pubDate>Fri, 18 Sep 2026 13:23:51 GMT</pubDate></item><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Fri, 18 Sep 2026 13:17:01 GMT]]></title><description><![CDATA[<p dir="auto">最近我使用llmfan46 nvfp4, bf16 版本，修正jinja, 以前发生过的莫名其妙的问题，被修正了，<br />
现在又正常回了，不懂是不是我的幻觉，感觉好像比之前的Q8 nvfp4 稍微强一点，因为他主动找到一个之前q8 忽略的一个漏洞</p>
<p dir="auto">修正jinja:</p>
<pre><code>{%- set image_count = namespace(value=0) %}
{%- set video_count = namespace(value=0) %}
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
    {%- if content is string %}
        {{- content }}
    {%- elif content is iterable and content is not mapping %}
        {%- for item in content %}
            {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
                {%- if is_system_content %}
                    {{- raise_exception('System message cannot contain images.') }}
                {%- endif %}
                {%- if do_vision_count %}
                    {%- set image_count.value = image_count.value + 1 %}
                {%- endif %}
                {%- if add_vision_id %}
                    {{- 'Picture ' ~ image_count.value ~ ': ' }}
                {%- endif %}
                {{- '&lt;|vision_start|&gt;&lt;|image_pad|&gt;&lt;|vision_end|&gt;' }}
            {%- elif 'video' in item or item.type == 'video' %}
                {%- if is_system_content %}
                    {{- raise_exception('System message cannot contain videos.') }}
                {%- endif %}
                {%- if do_vision_count %}
                    {%- set video_count.value = video_count.value + 1 %}
                {%- endif %}
                {%- if add_vision_id %}
                    {{- 'Video ' ~ video_count.value ~ ': ' }}
                {%- endif %}
                {{- '&lt;|vision_start|&gt;&lt;|video_pad|&gt;&lt;|vision_end|&gt;' }}
            {%- elif 'text' in item %}
                {{- item.text }}
            {%- else %}
                {{- raise_exception('Unexpected item type in content.') }}
            {%- endif %}
        {%- endfor %}
    {%- elif content is none or content is undefined %}
        {{- '' }}
    {%- else %}
        {{- raise_exception('Unexpected content type.') }}
    {%- endif %}
{%- endmacro %}
{%- if not messages %}
    {{- raise_exception('No messages provided.') }}
{%- endif %}
{%- set reasoning_instructions = '' %}
{%- if enable_thinking is undefined or enable_thinking is true %}
    {%- set resolved_reasoning_effort = reasoning_effort|default('xhigh') %}
    {%- if resolved_reasoning_effort not in ('xhigh', 'medium', 'low') %}
        {{- raise_exception('Unexpected reasoning effort ' ~ reasoning_effort ~ '. Supported types are xhigh (default), medium, and low.') }}
    {%- endif %}
    {%- if resolved_reasoning_effort == 'xhigh' %}
        {%- set reasoning_instructions = 'Reasoning effort is set to xhigh. Please think carefully through the task, validate key assumptions, consider plausible alternatives, and prioritize correctness, consistency, and clarity in the final answer.' %}
    {%- elif resolved_reasoning_effort == 'low' %}
        {%- set reasoning_instructions = 'Reasoning effort is set to low. Keep your thinking brief and focused, moving directly to the conclusion without unnecessary elaboration.' %}
    {%- endif %}
{%- endif %}
{%- if tools and tools is iterable and tools is not mapping %}
    {{- '&lt;|im_start|&gt;system\n' }}
    {%- if reasoning_instructions %}
        {{- reasoning_instructions + '\n\n' }}
    {%- endif %}
    {{- "# Tools\n\nYou have access to the following functions:\n\n&lt;tools&gt;" }}
    {%- for tool in tools %}
        {{- "\n" }}
        {{- tool | tojson }}
    {%- endfor %}
    {{- "\n&lt;/tools&gt;" }}
    {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n&lt;tool_call&gt;\n&lt;function=example_function_name&gt;\n&lt;parameter=example_parameter_1&gt;\nvalue_1\n&lt;/parameter&gt;\n&lt;parameter=example_parameter_2&gt;\nThis is the value for the second parameter\nthat can span\nmultiple lines\n&lt;/parameter&gt;\n&lt;/function&gt;\n&lt;/tool_call&gt;\n\n&lt;IMPORTANT&gt;\nReminder:\n- Function calls MUST follow the specified format: an inner &lt;function=...&gt;&lt;/function&gt; block must be nested within &lt;tool_call&gt;&lt;/tool_call&gt; 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&lt;/IMPORTANT&gt;' }}
    {%- if messages[0].role == 'system' %}
        {%- set content = render_content(messages[0].content, false, true)|trim %}
        {%- if content %}
            {{- '\n\n' + content }}
        {%- endif %}
    {%- endif %}
    {{- '&lt;|im_end|&gt;\n' }}
{%- else %}
    {%- if messages[0].role == 'system' %}
        {%- set content = render_content(messages[0].content, false, true)|trim %}
        {%- if content %}
            {{- '&lt;|im_start|&gt;system\n' + (reasoning_instructions + '\n\n' if reasoning_instructions else '')  + content + '&lt;|im_end|&gt;\n' }}
        {%- elif reasoning_instructions %}
            {{- '&lt;|im_start|&gt;system\n' + reasoning_instructions + '&lt;|im_end|&gt;\n' }}
        {%- endif %}
    {%- elif reasoning_instructions %}
        {{- '&lt;|im_start|&gt;system\n' + reasoning_instructions + '&lt;|im_end|&gt;\n' }}
    {%- endif %}
{%- endif %}
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
{%- for message in messages[::-1] %}
    {%- set index = (messages|length - 1) - loop.index0 %}
    {%- if ns.multi_step_tool and message.role == "user" %}
        {%- set content = render_content(message.content, false)|trim %}
        {%- if not(content.startswith('&lt;tool_response&gt;') and content.endswith('&lt;/tool_response&gt;')) %}
            {%- set ns.multi_step_tool = false %}
            {%- set ns.last_query_index = index %}
        {%- endif %}
    {%- endif %}
{%- endfor %}
{%- if ns.multi_step_tool %}
    {{- raise_exception('No user query found in messages.') }}
{%- endif %}
{%- for message in messages %}
    {%- set content = render_content(message.content, true)|trim %}
    {%- if message.role == "system" %}
        {%- if not loop.first %}
            {{- '&lt;|im_start|&gt;system
' + content + '&lt;|im_end|&gt;' + '
' }}
        {%- endif %}
    {%- elif message.role == "user" %}
        {{- '&lt;|im_start|&gt;' + message.role + '\n' + content + '&lt;|im_end|&gt;' + '\n' }}
    {%- elif message.role == "assistant" %}
        {%- set reasoning_content = '' %}
        {%- if message.reasoning_content is string %}
            {%- set reasoning_content = message.reasoning_content %}
        {%- endif %}
        {%- set reasoning_content = reasoning_content|trim %}
        {%- if preserve_thinking is undefined or preserve_thinking is true or loop.index0 &gt; ns.last_query_index %}
            {{- '&lt;|im_start|&gt;' + message.role + '\n&lt;think&gt;\n' + reasoning_content + '\n&lt;/think&gt;\n\n' + content }}
        {%- else %}
            {{- '&lt;|im_start|&gt;' + message.role + '\n' + content }}
        {%- endif %}
        {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
            {%- for tool_call in message.tool_calls %}
                {%- if tool_call.function is defined %}
                    {%- set tool_call = tool_call.function %}
                {%- endif %}
                {%- if loop.first %}
                    {%- if content|trim %}
                        {{- '\n\n&lt;tool_call&gt;\n&lt;function=' + tool_call.name + '&gt;\n' }}
                    {%- else %}
                        {{- '&lt;tool_call&gt;\n&lt;function=' + tool_call.name + '&gt;\n' }}
                    {%- endif %}
                {%- else %}
                    {{- '\n&lt;tool_call&gt;\n&lt;function=' + tool_call.name + '&gt;\n' }}
                {%- endif %}
                {%- if tool_call.arguments is defined and tool_call.arguments != '' %}
                    {%- for args_name, args_value in tool_call.arguments|items %}
                        {{- '&lt;parameter=' + args_name + '&gt;\n' }}
                        {%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
                        {{- args_value }}
                        {{- '\n&lt;/parameter&gt;\n' }}
                    {%- endfor %}
                {%- endif %}
                {{- '&lt;/function&gt;\n&lt;/tool_call&gt;' }}
            {%- endfor %}
        {%- endif %}
        {{- '&lt;|im_end|&gt;\n' }}
    {%- elif message.role == "tool" %}
        {%- if loop.previtem and loop.previtem.role != "tool" %}
            {{- '&lt;|im_start|&gt;user' }}
        {%- endif %}
        {{- '\n&lt;tool_response&gt;\n' }}
        {{- content }}
        {{- '\n&lt;/tool_response&gt;' }}
        {%- if not loop.last and loop.nextitem.role != "tool" %}
            {{- '&lt;|im_end|&gt;\n' }}
        {%- elif loop.last %}
            {{- '&lt;|im_end|&gt;\n' }}
        {%- endif %}
    {%- else %}
        {{- raise_exception('Unexpected message role.') }}
    {%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
    {{- '&lt;|im_start|&gt;assistant\n' }}
    {%- if enable_thinking is defined and enable_thinking is false %}
        {{- '&lt;think&gt;\n\n&lt;/think&gt;\n\n' }}
    {%- else %}
        {{- '&lt;think&gt;\n' }}
    {%- endif %}
{%- endif %}
</code></pre>
]]></description><link>https://lcz.me/post/19167</link><guid isPermaLink="true">https://lcz.me/post/19167</guid><dc:creator><![CDATA[imbiplaza ASUS]]></dc:creator><pubDate>Fri, 18 Sep 2026 13:17:01 GMT</pubDate></item><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Fri, 18 Sep 2026 12:52:58 GMT]]></title><description><![CDATA[<p dir="auto">他用 pro 6000 96G 跑。兄弟你拿 R9700 32G 做比较。<br />
基本的恶补还是要的。<br />
这映射出的基本问题是他生态是NV的。劳动成果你换生态肯定吃不到大部分的红利。</p>
]]></description><link>https://lcz.me/post/19156</link><guid isPermaLink="true">https://lcz.me/post/19156</guid><dc:creator><![CDATA[williamlouis]]></dc:creator><pubDate>Fri, 18 Sep 2026 12:52:58 GMT</pubDate></item><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Fri, 18 Sep 2026 11:56:10 GMT]]></title><description><![CDATA[<p dir="auto">它解决的不是速度，是思考的内部思维链吧？</p>
]]></description><link>https://lcz.me/post/19144</link><guid isPermaLink="true">https://lcz.me/post/19144</guid><dc:creator><![CDATA[stxpnet]]></dc:creator><pubDate>Fri, 18 Sep 2026 11:56:10 GMT</pubDate></item><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Fri, 18 Sep 2026 08:26:56 GMT]]></title><description><![CDATA[<p dir="auto">我用llama.cpp在R9700跑过这个模型，速度并没有那么快。</p>
]]></description><link>https://lcz.me/post/19055</link><guid isPermaLink="true">https://lcz.me/post/19055</guid><dc:creator><![CDATA[yuan hao]]></dc:creator><pubDate>Fri, 18 Sep 2026 08:26:56 GMT</pubDate></item><item><title><![CDATA[Reply to 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored on Thu, 17 Sep 2026 17:53:53 GMT]]></title><description><![CDATA[<p dir="auto"><img src="https://upload.lcz.me/uploads/ef00621e-e416-4b5f-9b85-98dfd9204b46.jpeg" alt="image.jpeg" class=" img-fluid img-markdown" /><br />
这评论不知道是不是它自己搞的水军，哈哈</p>
]]></description><link>https://lcz.me/post/18920</link><guid isPermaLink="true">https://lcz.me/post/18920</guid><dc:creator><![CDATA[stxpnet]]></dc:creator><pubDate>Thu, 17 Sep 2026 17:53:53 GMT</pubDate></item></channel></rss>