摘要:
pip install theano==0.9 写成pip install theano == 0.9会报错 阅读全文
摘要:
1、进入官网 https://pytorch.org/ 2、复制command到anaconda环境,即可 阅读全文
摘要:
import datetimenow = datetime.datetime.now()print('当前时间:',now) 当前时间: 2019-11-21 11:11:58.093122 阅读全文
摘要:
def addlayer(inputs,insize,outsize,activity_function = None): weights = tf.Variable(tf.random_normal([insize,outsize])) biases = tf.Variable(tf.zeros( 阅读全文