tensorflow API:tf.set_random_seed同一随机种子不改变的设置
会话级种子设置随机函数的seed参数,对应的变量可以跨session生成相同的随机数:例子tf.reset_default_graph()a = tf.random_uniform([1], seed=1)b = tf.random_normal([1])# Repeatedly running this block with the same graph will gen...