摘要:
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... 阅读全文
摘要:
import tensorflow as tf#发起会话sess = tf.Session()#两行都可以执行 具体意思见下方注释A = tf.Variable(tf.truncated_normal([2,3],0,1,dtype=tf.float32,se... 阅读全文
摘要:
注释链接 所有代码 # -*- coding: utf-8 -*-"""Created on Wed Apr 19 12:30:49... 阅读全文
摘要:
注释链接 所有代码 # -*- coding: utf-8 -*-"""Created on Wed Apr 19 12:30:49... 阅读全文
摘要:
# -*- coding: utf-8 -*-"""Created on Sat Apr 15 17:55:54 2017@auth... 阅读全文
摘要:
# -*- coding: utf-8 -*-"""Created on Sat Apr 15 17:55:54 2017@auth... 阅读全文
摘要:
center 的基本用法 center就是居中的意思,字符串的长度为6个单位,tj 占了两个单位,其余的位子用$来占位 str =... 阅读全文
摘要:
center 的基本用法 center就是居中的意思,字符串的长度为6个单位,tj 占了两个单位,其余的位子用$来占位 str =... 阅读全文
摘要:
from random import shuffle as sfa=['bob','jack','tom','toby']for i... 阅读全文