- 博客(6)
- 资源 (2)
- 收藏
- 关注
原创 Tensorflow flags = tf.app.flags 的使用
Tensorflow flags = tf.app.flags 的使用在执行main函数之前首先进行flags的解析,也就是说TensorFlow通过设置flags来传递tf.app.run()所需要的参数,我们可以直接在程序运行前初始化flags,也可以在运行程序的时候设置命令行参数来达到传参的目的。tf.app.flags的使用例如:flags = tf.app.flagsflags.D
2017-11-20 20:49:34
5408
1
原创 Anaconda 报错: couldn't find or load Qt platform plugin "Windows in
win10 上anaconda 报错刚刚在W10 上安装Anaconda ,打开spyder时报错: “This application failed to start because it could not find or load the Qt platform plugin “windows in “”.Reinstalling the application may fix this
2017-09-09 14:43:04
1279
原创 numpy shape函数的使用
numpy中矩阵shape函数的使用在python3文档中可以查到numpy.core.defchararray.chararray.shape 可以通过shape函数查看矩阵的维度。 Examples:>>> x = np.array([1, 2, 3, 4])>>> x.shape(4,)>>> y = np.zeros((2, 3, 4))>>> y.shape(2, 3, 4)
2017-07-14 23:16:17
496
原创 windows 下安装theano
安装过程中出现 CondaHTTPError: HTTP None None for url ......问题使用conda config --show 命令查看配置使用conda config --add channels http......... 命令 设置清华的镜像conda config --set show_channel_urls yes
2017-07-05 09:31:54
378
原创 HDU1005 Number Sequence
由于mod7 , 在 A,B 固定情况下 , f(n-1) ,f(n-2) 只可能取得0,1,2,3,4,5,6 七个值, 故组合起来有最坏情况下7*7=49 个数字必定有规律 代码:#include using namespace std ;int main(){int a , b ,n ;while (cin >>a>>b>>n){if(a==0 &&
2017-01-31 21:34:18
148
原创 vs2010 下安装OpenCV2.4.4过程中出现的问题
VC 2010下安装OpenCV2.4.4http://wiki.opencv.org.cn/index.php/VC_2010下安装OpenCV2.4.4 参考上面的链接安装过程中,出现 error LNK2019: 无法解析的外部符号 _cvReleaseImage,该符号在函数 错误, 反复查看有没有什么地方路径出错后,没有发现错误 ,最后发现之前填的都是x64 的 ,
2016-03-25 14:39:01
262
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人