TensorFlow
薛定谔的幸运猫
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tf.reshape
# -*- coding: utf-8 -*- """ Created on Thu Apr 26 09:19:06 2018 @author: Loulch C.C """ import tensorflow as tf """ reshape(tensor, shape, name=None) Given `tensor`, this operation returns a ten...原创 2018-05-02 21:44:28 · 280 阅读 · 0 评论 -
tf.argmax
# -*- coding: utf-8 -*- """ Created on Thu Apr 26 08:40:23 2018 @author: Loulch C.C """ """ argmax(input, axis=None, name=None, dimension=None) Returns the index with the largest value across axe...原创 2018-05-10 10:06:04 · 293 阅读 · 0 评论 -
tf.reduce_mean
# -*- coding: utf-8 -*- """ Created on Thu May 3 20:00:51 2018 @author: Loulch C.C """ """ tf.reduce_mean(input_tensor, axis=None, keep_dims=False, name=None, reduction_indices=None) Computes t...原创 2018-05-03 20:39:20 · 322 阅读 · 0 评论 -
tf.clip_by_value
# -*- coding: utf-8 -*- """ Created on Thu May 3 16:45:24 2018 @author: Loulch C.C """ """ tf.clip_by_value(t, clip_value_min, clip_value_max, name=None) Clips tensor values to a specified min...原创 2018-05-05 16:13:28 · 408 阅读 · 0 评论
分享