跳转至内容
  • 版块
  • 最新
  • 标签
  • 热门
  • 用户
  • 群组
皮肤
  • 浅色
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • 深色
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • 默认(LCZ-Blue)
  • 不使用皮肤
  • LCZ-Green
  • LCZ-Blue
  • LCZ-Black
折叠
品牌标识

抡锤者

首页 版块 标签 硬件 AI 广场
  1. 主页
  2. 版块
  3. 随便聊聊
  4. 国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored

国人也是支棱起来了 nerkyor/Qwen3.8-27B-EfficientThink-Uncensored

已定时 已固定 已锁定 已移动 随便聊聊
qwenqwen-27b本地模型
7 帖子 5 发布者 201 浏览
  • 从旧到新
  • 从新到旧
  • 最多赞同
回复
  • 在新帖中回复
登录后回复
此主题已被删除。只有拥有主题管理权限的用户可以查看。
  • stxpnetS
    stxpnetS
    stxpnet
    超凡大师
    编写于 最后由 stxpnet 编辑
    #1

    7a5fba92-153d-492a-9421-ddb83369596e-image.jpeg

    c0521751-7aa5-4ef6-b317-8c47e9c106bd-image.jpeg

    这个 作者的模型,我之前关注过,以为是韩国或日本人。后来在B站看到视频。
    它这模型应该是有点东西的。跑分反超官方 10%左右。
    虽然没有学好,名字取得非常长。但是感觉它应该和DAVIDU不一样

    双卡3090 PCIE 3.0 8X/8X

    白天(宰相) Sglang+mattbucci 3.6 35B A3B AWQ W4A16 262K ~160 t/s
    夜间(将军) sglang+DENSE 27B INT8-W8A8-imatrix mtp/dflash2 230K ~65 t/s
    1 条回复 最后回复
    0
    • stxpnetS
      stxpnetS
      stxpnet
      超凡大师
      编写于 最后由 stxpnet 编辑
      #2

      image.jpeg
      这评论不知道是不是它自己搞的水军,哈哈

      双卡3090 PCIE 3.0 8X/8X

      白天(宰相) Sglang+mattbucci 3.6 35B A3B AWQ W4A16 262K ~160 t/s
      夜间(将军) sglang+DENSE 27B INT8-W8A8-imatrix mtp/dflash2 230K ~65 t/s
      1 条回复 最后回复
      1
      • yuan haoY
        yuan haoY
        yuan hao
        编写于 最后由 编辑
        #3

        我用llama.cpp在R9700跑过这个模型,速度并没有那么快。

        1 条回复 最后回复
        0
        • stxpnetS
          stxpnetS
          stxpnet
          超凡大师
          编写于 最后由 编辑
          #4

          它解决的不是速度,是思考的内部思维链吧?

          双卡3090 PCIE 3.0 8X/8X

          白天(宰相) Sglang+mattbucci 3.6 35B A3B AWQ W4A16 262K ~160 t/s
          夜间(将军) sglang+DENSE 27B INT8-W8A8-imatrix mtp/dflash2 230K ~65 t/s
          1 条回复 最后回复
          0
          • williamlouisW
            williamlouisW
            williamlouis
            超级版主
            编写于 最后由 编辑
            #5

            他用 pro 6000 96G 跑。兄弟你拿 R9700 32G 做比较。
            基本的恶补还是要的。
            这映射出的基本问题是他生态是NV的。劳动成果你换生态肯定吃不到大部分的红利。

            个人主页:xlkj.org Telegram https://t.me/xlkjorg

            1 条回复 最后回复
            0
            • imbiplaza ASUSI
              imbiplaza ASUSI
              imbiplaza ASUS
              至尊王者
              编写于 最后由 imbiplaza ASUS 编辑
              #6

              最近我使用llmfan46 nvfp4, bf16 版本,修正jinja, 以前发生过的莫名其妙的问题,被修正了,
              现在又正常回了,不懂是不是我的幻觉,感觉好像比之前的Q8 nvfp4 稍微强一点,因为他主动找到一个之前q8 忽略的一个漏洞

              修正jinja:

              {%- 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 %}
                              {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
                          {%- 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 %}
                              {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
                          {%- 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 %}
                  {{- '<|im_start|>system\n' }}
                  {%- if reasoning_instructions %}
                      {{- reasoning_instructions + '\n\n' }}
                  {%- endif %}
                  {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
                  {%- for tool in tools %}
                      {{- "\n" }}
                      {{- tool | tojson }}
                  {%- endfor %}
                  {{- "\n</tools>" }}
                  {{- '\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>' }}
                  {%- if messages[0].role == 'system' %}
                      {%- set content = render_content(messages[0].content, false, true)|trim %}
                      {%- if content %}
                          {{- '\n\n' + content }}
                      {%- endif %}
                  {%- endif %}
                  {{- '<|im_end|>\n' }}
              {%- else %}
                  {%- if messages[0].role == 'system' %}
                      {%- set content = render_content(messages[0].content, false, true)|trim %}
                      {%- if content %}
                          {{- '<|im_start|>system\n' + (reasoning_instructions + '\n\n' if reasoning_instructions else '')  + content + '<|im_end|>\n' }}
                      {%- elif reasoning_instructions %}
                          {{- '<|im_start|>system\n' + reasoning_instructions + '<|im_end|>\n' }}
                      {%- endif %}
                  {%- elif reasoning_instructions %}
                      {{- '<|im_start|>system\n' + reasoning_instructions + '<|im_end|>\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('<tool_response>') and content.endswith('</tool_response>')) %}
                          {%- 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 %}
                          {{- '<|im_start|>system
              ' + content + '<|im_end|>' + '
              ' }}
                      {%- endif %}
                  {%- elif message.role == "user" %}
                      {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\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 > ns.last_query_index %}
                          {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
                      {%- else %}
                          {{- '<|im_start|>' + 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<tool_call>\n<function=' + tool_call.name + '>\n' }}
                                  {%- else %}
                                      {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
                                  {%- endif %}
                              {%- else %}
                                  {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
                              {%- endif %}
                              {%- if tool_call.arguments is defined and tool_call.arguments != '' %}
                                  {%- for args_name, args_value in tool_call.arguments|items %}
                                      {{- '<parameter=' + args_name + '>\n' }}
                                      {%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
                                      {{- args_value }}
                                      {{- '\n</parameter>\n' }}
                                  {%- endfor %}
                              {%- endif %}
                              {{- '</function>\n</tool_call>' }}
                          {%- endfor %}
                      {%- endif %}
                      {{- '<|im_end|>\n' }}
                  {%- elif message.role == "tool" %}
                      {%- if loop.previtem and loop.previtem.role != "tool" %}
                          {{- '<|im_start|>user' }}
                      {%- endif %}
                      {{- '\n<tool_response>\n' }}
                      {{- content }}
                      {{- '\n</tool_response>' }}
                      {%- if not loop.last and loop.nextitem.role != "tool" %}
                          {{- '<|im_end|>\n' }}
                      {%- elif loop.last %}
                          {{- '<|im_end|>\n' }}
                      {%- endif %}
                  {%- else %}
                      {{- raise_exception('Unexpected message role.') }}
                  {%- endif %}
              {%- endfor %}
              {%- if add_generation_prompt %}
                  {{- '<|im_start|>assistant\n' }}
                  {%- if enable_thinking is defined and enable_thinking is false %}
                      {{- '<think>\n\n</think>\n\n' }}
                  {%- else %}
                      {{- '<think>\n' }}
                  {%- endif %}
              {%- endif %}
              

              https://lcz.me/project/dcs

              1 条回复 最后回复
              0
              • starryskyknightS
                starryskyknightS
                starryskyknight
                德高望重
                编写于 最后由 编辑
                #7

                雖然不合我的使用平台 但很開心看到更多人投入

                1 条回复 最后回复
                0

                你好!看起来您对这段对话很感兴趣,但您还没有一个账号。

                厌倦了每次访问都刷到同样的帖子?您注册账号后,您下次访问时都将自动回到上次浏览的位置,并可选择接收新回复的通知(通过电子邮件或推送通知)。您还可以收藏帖子、为帖子点赞,以此向其他社区成员表达您的感谢。

                有了你的建议,这篇帖子会更精彩哦 💗

                注册 登录
                回复
                • 在新帖中回复
                登录后回复
                • 从旧到新
                • 从新到旧
                • 最多赞同


                • 登录

                • 登录或注册以进行搜索。
                • 第一个帖子
                  最后一个帖子
                0
                • 版块
                • 最新
                • 标签
                • 热门
                • 用户
                • 群组