上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 推测是找不到gcc,怀疑过去机器gcc未配置好环境变量,于是尝试卸载gcc 此次报错显示需要g++编译,于是安装g++ 之后使用g++代替gcc跑通了编译部分 阅读全文
posted @ 2019-10-05 17:52 Wind·Chaser 阅读(3969) 评论(0) 推荐(0)
摘要: 查看scipy.misc帮助文件得知,imread依赖于pillow,所以首先尝试安装pillow: 若继续报错,则是scipy版本不兼容的问题,需要降级到1.2.1版本 阅读全文
posted @ 2019-10-05 14:32 Wind·Chaser 阅读(920) 评论(1) 推荐(1)
摘要: Python_报错:SyntaxError: EOL while scanning string literal 原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可 上代码 解决方法:去掉最后的\即可 阅读全文
posted @ 2019-09-20 21:24 Wind·Chaser 阅读(6025) 评论(0) 推荐(0)
摘要: 题目描述 请编程实现矩阵乘法,并考虑当矩阵规模较大时的优化方法。 思路分析 根据wikipedia上的介绍:两个矩阵的乘法仅当第一个矩阵B的列数和另一个矩阵A的行数相等时才能定义。如A是m×n矩阵和B是n×p矩阵,它们的乘积AB是一个m×p矩阵,它的一个元素其中 1 ≤ i ≤ m, 1 ≤ j ≤ 阅读全文
posted @ 2019-09-20 20:06 Wind·Chaser 阅读(2084) 评论(0) 推荐(1)
摘要: https://leetcode-cn.com/problems/two-sum 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 阅读全文
posted @ 2019-09-18 09:40 Wind·Chaser 阅读(221) 评论(0) 推荐(0)
摘要: 在使用pandas判断数据时出现错误提示: ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all(). 个人理解:这是因为,你将一个值与多个值或一 阅读全文
posted @ 2019-09-14 11:37 Wind·Chaser 阅读(6779) 评论(0) 推荐(0)
摘要: 什么是预训练模型 简单来说,预训练模型(pre-trained model)是前人为了解决类似问题所创造出来的模型。你在解决问题的时候,不用从零开始训练一个新模型,可以从在类似问题中训练过的模型入手。 比如说,你如果想做一辆自动驾驶汽车,可以花数年时间从零开始构建一个性能优良的图像识别算法,也可以从 阅读全文
posted @ 2019-08-27 19:26 Wind·Chaser 阅读(503) 评论(0) 推荐(0)
摘要: 运行demo报错 ValueError: Shape must be rank 1 but is rank 0 for 'bn_conv1/cond/Reshape_4' (op: 'Reshape') with input shapes: [1,64,1,1], []. 经过查阅,发现是Batch 阅读全文
posted @ 2019-08-27 18:20 Wind·Chaser 阅读(3934) 评论(0) 推荐(1)
摘要: 中国计算机学会推荐国际学术期刊 (计算机系统与高性能计算) 一、A类 序号 刊物简称 刊物全称 出版社 网址 1 TOCS ACM Transactions on Computer Systems ACM http://tocs.acm.org/ 2 TOC IEEE Transactions on 阅读全文
posted @ 2019-08-24 01:02 Wind·Chaser 阅读(25229) 评论(0) 推荐(6)
摘要: 1.[CVPR 2019] Aggregation Cross-Entropy for Sequence Recognition In this paper, we propose a novel method, aggregation cross-entropy (ACE), for sequen 阅读全文
posted @ 2019-08-22 21:26 Wind·Chaser 阅读(247) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页