摘要: 根据表达式自动生成变量:ctrl+alt+V; eg: 根据右边的表达式生成变量writer 定位到上/下一个报错(红波浪线):F2/shift+F2; 定位到上次/下次光标处:ctrl+alt+左/右方向键; 代码格式化:ctrl+alt+L; 打开/关闭项目树:alt+1; 运行当前程序:shi 阅读全文
posted @ 2023-01-17 15:53 Kurie 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 原因:通道数不匹配,MINIST使用灰度图像,CIFAR10使用RGB图像。 解决方式:加载图像时,做一下转换。 阅读全文
posted @ 2022-12-02 13:17 Kurie 阅读(2485) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 找到调试要使用的python解释器路径 Linux命令:whereis python 我这里是/home/tao/anaconda/envs/spyketorchproject/bin/python3.10 在VSCode中修改Debug配置文件:launch.json 添加两行代码"p 阅读全文
posted @ 2022-12-02 13:10 Kurie 阅读(1366) 评论(0) 推荐(0) 编辑
摘要: 原因:服务器端防火墙禁用了ssh服务器端口22 解决方案:开启22端口 sudo ufw allow 22/tcp 阅读全文
posted @ 2022-11-02 15:07 Kurie 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/1526837/202209/1526837-20220919113225889-680179180.png) 阅读全文
posted @ 2022-09-19 11:32 Kurie 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 记得一定要初始化ArrayList<>(); 例如: ArrayList postSalaryArr = new ArrayList<>(), otherRewordArr= new ArrayList<>(), wageArr= new ArrayList<>(); 阅读全文
posted @ 2021-04-06 09:51 Kurie 阅读(268) 评论(0) 推荐(0) 编辑
摘要: let employee1 = sessionStorage.getItem("employee"); let employee =eval( "(" +employee1+ ")" ); employee.name即可正常取出数据了 阅读全文
posted @ 2021-04-04 22:08 Kurie 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 记事本打开,另存为,编码格式选择“带有BOM的UTF-8” 阅读全文
posted @ 2021-04-04 21:16 Kurie 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 转载网址:https://blog.csdn.net/qiuyu1998/article/details/109603442 在默认值外用双引号引上 阅读全文
posted @ 2021-03-28 20:15 Kurie 阅读(536) 评论(0) 推荐(0) 编辑
摘要: IDEA清除缓存后重启。 (又浪费了好长的时间,这什么鬼。。。 阅读全文
posted @ 2021-03-07 18:47 Kurie 阅读(363) 评论(1) 推荐(1) 编辑