当前位置:网站首页>empty() received an invalid combination of arguments - got (tuple, dtype=NoneType, device=NoneType),
empty() received an invalid combination of arguments - got (tuple, dtype=NoneType, device=NoneType),
2022-08-03 05:29:00 【WGS.】
完整报错如下:
TypeError: empty() received an invalid combination of arguments - got (tuple, dtype=NoneType, device=NoneType), but expected one of:
* (tuple of ints size, *, tuple of names names, torch.memory_format memory_format, torch.dtype dtype, torch.layout layout, torch.device device, bool pin_memory, bool requires_grad)
* (tuple of ints size, *, torch.memory_format memory_format, Tensor out, torch.dtype dtype, torch.layout layout, torch.device device, bool pin_memory, bool requires_grad)
参考自:https://blog.csdn.net/qq_25105061/article/details/123705011
说是不能是浮点型,所以这里定位到nn.Embedding的位置,feature_fields
这个列表确实都是浮点型的,改成int类型即可
feature_fields = data_X.max().values + 1
feature_fields = feature_fields.astype(np.int)
print(feature_fields)
print(sum(feature_fields))
[ 2 2 2 2 2 2 2 2 2 2
2 2 2 869 525 117271 53414 210 13 9476
407 3 18942 4274 102028 2989 26 6932 82353 10
3192 1593 4 93248 15 14 21964 60 17029]
536887
边栏推荐
- Scala 高阶(七):集合内容汇总(上篇)
- 2021-06-15
- Redis哨兵模式+过期策略、淘汰策略、读写策略
- 2021-06-20
- Oracle 数据库集群常用巡检命令
- SQL——左连接(Left join)、右连接(Right join)、内连接(Inner join)
- mysql事务与多版本并发控制
- Monitoring Oracle11gR2 in Zabbix6.0 of OracleLinux8.6
- TFS (Azure conversation) prohibit people checked out at the same time
- 【OpenStack云平台】搭建openstack云平台
猜你喜欢
随机推荐
【YOLOv3 SPP 数据集准备】YOLOv3 SPP数据集准备代码理解
【DIoU CIoU】DIoU和CIoU损失函数理解及代码实现
html+css+php+mysql实现注册+登录+修改密码(附完整代码)
【Markdown 数学公式】markdown常用公式写法
我的Go+语言初体验——祝福留言小系统,让她也可以感受到你的祝福
JDBC从手写连接到引用DBCP和C3P0
502 bad gateway原因、解决方法
C # to switch input method
如何使用md5码验证文件的一致性
【地平线 开发板】实现模型转换并在地平线开发板上部署的全过程操作记录(魔改开发包)
AR路由器如何配置Portal认证(二层网络)
JumpServer如何传输文件以及复制剪切板
2021-06-14
WinServer2012r2破解多用户同时远程登录,并取消用户控制
Oracle常用命令-基本命令
MySQL的Replace用法详解
5 个开源的 Rust Web 开发框架,你选择哪个?
记一次postgresql中使用正则表达式
MySql data format is converted to Redis key-value pair format
Content type ‘applicationx-www-form-urlencoded;charset=UTF-8‘ not supported“【已解决】