We are now trying to deploy our Deep Learning model onto Google Cloud. It is required to use Google Function to trigger the Deep Learning predictions. ...
分类:
其他好文 时间:
2019-06-05 00:32:37
阅读次数:
96
title: why batch norm work 没太理解 title: softmax regression 多分类问题,输出层变成一个n维向量,有几个类就几维,每一个元素对应属于这个类的概率 softmax激活函数,挺简单的啊 softmax这一层,本身是划分线性边界的 title: dee ...
分类:
其他好文 时间:
2019-06-04 17:46:40
阅读次数:
113
Tensorflow、Seq2Seq、Attention、聊天机器人 ...
分类:
其他好文 时间:
2019-06-03 14:29:50
阅读次数:
83
Resize函数用于对PIL图像的预处理,它的包在: 使用如: 而Resize函数有两个参数, size : 获取输出图像的大小 interpolation : 插值,默认的 PIL.Image.BILINEAR, 一共有4中的插值方法 ...
分类:
其他好文 时间:
2019-05-26 16:09:34
阅读次数:
2657
[TOC] Tensor Flow TensorBoard Installation Curves Image Visualization Installation Priciple Listen logdir build summary instance fed data into summary ...
分类:
其他好文 时间:
2019-05-25 13:20:01
阅读次数:
148
import tempfile import tensorflow as tf input_data = [1, 2, 3, 5, 8] dataset = tf.data.Dataset.from_tensor_slices(input_data) # 定义迭代器。 iterator = data... ...
分类:
编程语言 时间:
2019-05-18 13:56:30
阅读次数:
112
https://blog.csdn.net/zz2230633069/article/details/82669546 2018年09月12日 22:56:50 一只tobey 阅读数:727 2018年09月12日 22:56:50 一只tobey 阅读数:727 1.numpy类型:numpy. ...
分类:
其他好文 时间:
2019-05-17 18:07:21
阅读次数:
198
import tensorflow as tf from tensorflow.python.framework import graph_util v1 = tf.Variable(tf.constant(1.0, shape=[1]), name = "v1") v2 = tf.Variable... ...
分类:
编程语言 时间:
2019-05-16 14:01:24
阅读次数:
349
[TOC] Outline where scatter_nd meshgrid Where where(tensor) where获得以下表格中True的位置 1|2|3 | | True|False|False False|True|False False|False|True where(con ...
分类:
其他好文 时间:
2019-05-14 20:51:19
阅读次数:
181
python export_inference_graph.py --input_type image_tensor --pipeline_config_path ssd_mobilenet_v1_coco.config --trained_checkpoint_prefix model.ckpt- ...
分类:
Web程序 时间:
2019-05-14 11:10:45
阅读次数:
175