news 2026/7/18 5:26:46

KeyError: ‘sdpa‘

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
KeyError: ‘sdpa‘

问题描述

model=AutoModelForCausalLM.from_pretrained(^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\AppData\Roaming\Python\Python312\site-packages\transformers\models\auto\auto_factory.py",line597,infrom_pretrainedreturnmodel_class.from_pretrained(^^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\AppData\Roaming\Python\Python312\site-packages\transformers\modeling_utils.py",line277,in_wrapperreturnfunc(*args,**kwargs)^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\AppData\Roaming\Python\Python312\site-packages\transformers\modeling_utils.py",line4971,infrom_pretrained model=cls(config,*model_args,**model_kwargs)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\.cache\huggingface\modules\transformers_modules\Youtu_hyphen_VL_hyphen_4B_hyphen_Instruct\modeling_youtu_vl.py",line1173,in__init__ self.siglip2=Siglip2VisionModel._from_config(config.vision_config)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\AppData\Roaming\Python\Python312\site-packages\transformers\modeling_utils.py",line277,in_wrapperreturnfunc(*args,**kwargs)^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\AppData\Roaming\Python\Python312\site-packages\transformers\modeling_utils.py",line2311,in_from_config model=cls(config,**kwargs)^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\.cache\huggingface\modules\transformers_modules\Youtu_hyphen_VL_hyphen_4B_hyphen_Instruct\modeling_siglip2.py",line1284,in__init__ self.vision_model=Siglip2VisionTransformer(config)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\.cache\huggingface\modules\transformers_modules\Youtu_hyphen_VL_hyphen_4B_hyphen_Instruct\modeling_siglip2.py",line817,in__init__ self.encoder=Siglip2Encoder(config)^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\.cache\huggingface\modules\transformers_modules\Youtu_hyphen_VL_hyphen_4B_hyphen_Instruct\modeling_siglip2.py",line604,in__init__ self.layers=nn.ModuleList([Siglip2EncoderLayer(config)for_inrange(config.num_hidden_layers)])^^^^^^^^^^^^^^^^^^^^^^^^^^^File"C:\Users\wh109\.cache\huggingface\modules\transformers_modules\Youtu_hyphen_VL_hyphen_4B_hyphen_Instruct\modeling_siglip2.py",line534,in__init__ self.self_attn=VISION_ATTENTION_CLASSES[config._attn_implementation](config=config)~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^KeyError:'sdpa'

解决方法

将attn_implementation设置为eager,

attn_implementation="eager",# 关键参数

代码如下:

fromtransformersimportAutoModelForCausalLM,AutoProcessor,AutoConfigimporttorch# 方法1:通过 config 设置config=AutoConfig.from_pretrained("Youtu-VL-4B-Instruct")config._attn_implementation="eager"# 使用标准注意力机制model=AutoModelForCausalLM.from_pretrained("Youtu-VL-4B-Instruct",config=config,torch_dtype=torch.bfloat16,# 或者 torch.float16device_map="auto")# 方法2:在 from_pretrained 中直接指定model=AutoModelForCausalLM.from_pretrained("Youtu-VL-4B-Instruct",torch_dtype=torch.bfloat16,attn_implementation="eager",# 关键参数device_map="auto")
版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/15 15:59:04

2026毕设ssm+vue农家乐客户管理系统论文+程序

本系统(程序源码)带文档lw万字以上 文末可获取一份本项目的java源码和数据库参考。 系统程序文件列表 开题报告内容 选题背景 关于乡村旅游信息化管理问题的研究,现有研究主要以传统酒店管理系统或单一功能旅游平台为主,专门针…

作者头像 李华
网站建设 2026/7/3 9:26:00

2026毕设ssm+vue农户自产自销线上农产品超市论文+程序

本系统(程序源码)带文档lw万字以上 文末可获取一份本项目的java源码和数据库参考。 系统程序文件列表 开题报告内容 一、选题背景 关于电商平台管理系统的研究,现有研究主要以大型分布式架构(如Spring Cloud、Dubbo微服务架构&…

作者头像 李华
网站建设 2026/7/2 14:02:54

【MySQL修炼篇】从S锁/X锁到Next-Key Lock:MySQL锁机制硬核拆解

🍃 予枫:个人主页📚 个人专栏: 《Java 从入门到起飞》《读研码农的干货日常》💻 Debug 这个世界,Return 更好的自己! 引言 线上系统突然报出死锁异常,业务数据更新卡住,排查半天却连…

作者头像 李华
网站建设 2026/7/13 2:36:29

自建游戏服务器零代码打造专属体验:新手探索指南

自建游戏服务器零代码打造专属体验:新手探索指南 【免费下载链接】KCN_ArknightsServer 一个Ark服务端 - GUI一键端。 项目地址: https://gitcode.com/gh_mirrors/kc/KCN_ArknightsServer 想解锁完全自主的游戏世界吗?通过KCN_ArknightsServer项目…

作者头像 李华