TensorFlow
卡贝
这个作者很懒,什么都没留下…
展开
-
[TensorBoard]基本使用
安装 pip install tensorboard 基本使用 Graph显示 使用FileWriter将Graph写入events.out.tfevents中,用于TensorBoard显示。 tf.summary.FileWriter(logdir, graph=None, max_queue=10, flush_secs=120, graph_def=None, filename_...原创 2018-06-27 16:19:49 · 271 阅读 · 0 评论 -
[TensorFlow]image to tfrecord错误整理
File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 341, in _find_image_files random.shuffle(shuffled_index) File "C:\ProgramData\Anaconda3\lib\random.py", line 27...原创 2018-07-02 23:37:06 · 836 阅读 · 6 评论 -
[TensorFlow]优化器
梯度下降算法,需要指定learning_rate 根据样本的特殊情况,也可以用于随机梯度下降 tf.train.GradientDescentOptimizer(learning_rate, use_locking=False, name='GradientDescent') Args: learning_rate: A Tensor or a floating point v...原创 2018-06-28 15:53:34 · 293 阅读 · 0 评论