摘要:
参考来源: https://github.com/ckmarkoh/neuralart_tensorflow https://g... 阅读全文
摘要:
参考来源: https://github.com/ckmarkoh/neuralart_tensorflow https://g... 阅读全文
摘要:
首先你要 pip install captcha python 版本 3.5 本文转载自斗大的熊猫 from captcha.i... 阅读全文
摘要:
首先你要 pip install captcha python 版本 3.5 本文转载自斗大的熊猫 from captcha.i... 阅读全文
摘要:
直接看注释吧,知行合一! # -*- coding: utf-8 -*-"""Created on Tue Mar 21 10:36... 阅读全文
摘要:
直接看注释吧,知行合一! # -*- coding: utf-8 -*-"""Created on Tue Mar 21 10:36... 阅读全文
摘要:
https://github.com/dennybritz 高中辍学的denny大牛啊,还是读英文吧 http://blog.topspeedsnail.com/page/2 斗大的熊猫 大牛 阅读全文
摘要:
b=list(range(5)) b [0, 1, 2, 3, 4] #列表 区别 a=np.arange(5) a array([0, 1, 2, 3, 4])# 矩阵 生成一个1*24的矩阵,在将她变成2*3*4的数体 c=np.arange(24... 阅读全文
摘要:
b=list(range(5)) b [0, 1, 2, 3, 4] #列表 区别 a=np.arange(5) a array([0, 1, 2, 3, 4])# 矩阵 生成一个1*24的矩阵,在将她变成2*3*4的数体 c=np.arange(24... 阅读全文
摘要:
import tensorflow as tf#发起会话sess = tf.Session()#两行都可以执行 具体意思见下方注释A = tf.Variable(tf.truncated_normal([2,3],0,1,dtype=tf.float32,se... 阅读全文