Class Variable A variable maintains state in the graph across calls to run(). You add a variable to the graph by constructing an instance of the class Read More
posted @ 2018-05-29 22:59 suonikeyinsu Views(141) Comments(0) Diggs(0) Edit
tf.placeholder Inserts a placeholder for a tensor that will be always fed. Important: This tensor will produce an error if evaluated. Its value must b Read More
posted @ 2018-05-29 21:50 suonikeyinsu Views(227) Comments(0) Diggs(0) Edit
list comprehension Using a list comprehension: [x for x in iterable] to create list instance [expresion for x in iterabel ] 列表推导式的核心在expression. 列表推推导 Read More
posted @ 2018-05-29 20:51 suonikeyinsu Views(134) Comments(0) Diggs(0) Edit
class numpy.random.RandomState(seed=None) RandomState 是一个基于Mersenne Twister算法的伪随机数生成类 RandomState 包含很多生成 概率分布的伪随机数 的方法。 如果指定seed值,那么每次生成的随机数都是一样的。即对于某 Read More
posted @ 2018-05-29 13:16 suonikeyinsu Views(225) Comments(0) Diggs(0) Edit