威武缘分

文章
5
资源
0
加入时间
2年10月17天

Centos7安装Golang1.6,并配置vim环境

http://icsmile.com/2016/03/31/centos7_go1.6/在CentOS7下安装golang1.6版本,并进行vim高亮配置安装卸载之前的版本 yum remove golang下载Golang1.6 wget http://www.golangtc.com/static/go/1.6/go1.6.linux-amd64.ta

日期比较的方法

 方法一:<o:p></o:p>var dateStr= '<st1:chsdate w:st="on" year="1997" month="9" day="8" islunardate="False" is

TF乘法之multiply、matmul、*

import tensorflow as tfw = tf.Variable([[0.4], [1.2]], dtype=tf.float32) # w.shape: [2, 1]x = tf.Variable([range(1,6), range(5,10)], dtype=tf.float32) # x.shape: [2, 5]y = w * x # 等同于 y = tf.multiply(w, x) y.shape: [2, 5]sess = tf.Session()ini