TensorFlow函数
-
Python机器学习算法的7个损失函数的详细指南
Python机器学习算法的7个损失函数的详细指南 译者|VK 来源|Analytics Vidhya 概述 学习什么是损失函数以及它们如何在机器学习算法中工作 损失函数实际上是我们…
-
TensorFlow Keras 预训练模型整理 pre-trained modules
1.最全的是 Keras 官方整理的 applications 包括很多模型以及参数,可以直接加载使用 https://keras.io/applications/ 2.tenso…
-
TensorFlow 实战卷积神经网络之 LeNet
LeNet 项目简介 1994 年深度学习三巨头之一的 Yan LeCun 提出了 LeNet 神经网络,这是最早的卷积神经网络。1998 年 Yan LeCun 在论文 R…
-
在 TensorFlow 中使用预训练权重来进行高级网络定义
TensorNets import tensorflow as tf import tensornets as nets inputs = tf.placeholder(tf.fl…
-
分布式 tensorflow 指南
分布式 tensorflow 指南 本指南是一个分布式训练样例集合(可以作为样板代码)和一个基本的分布式tensorflow教程。许多的例子集中在著名的分布式训练方案的实施,如作者…
-
看可口可乐公司是怎么玩转TensorFlow的?
在这篇客座文章中,可口可乐公司的 Patrick Brandt 将向我们介绍他们如何使用 AI 和 TensorFlow 实现无缝式购买凭证。 可口可乐的核心忠诚度计划于 2006…
-
SSD:TensorFlow中的单次多重目标检测器
SSD:TensorFlow中的单次多重检测器 SSD Notebook 包含 SSD TensorFlow 的最小示例。 很快,就检测出了两个主要步骤:在图像上运行SSD网络,并…
-
TFI: 在一行代码中使用任何TensorFlow模型
TFI: Use any TensorFlow model in a single line of code TFI provides a simple Python interf…
-
tf.contrib.seq2seq.sequence_loss example:seqence loss 实例代码
tf.contrib.seq2seq.sequence_loss example:seqence loss 实例代码 [code lang=text] #!/usr/bin/env…
-
tf.contrib.seq2seq.sequence_loss TensorFlow seq2seq 损失函数
tf.contrib.seq2seq.sequence_loss(logits, targets, weights, average_across_timesteps=True, …
-
tf.contrib.legacy_seq2seq.basic_rnn_seq2seq 函数 example 最简单实现
tf.contrib.legacy_seq2seq.basic_rnn_seq2seq 函数 example 最简单实现 函数文档:https://www.tensorflow.o…
-
tf.losses.cosine_distance tensorflow 损失函数 cosine 距离
tensorflow 损失函数 cosine 距离 tf.losses.cosine_distance 官方文档:https://www.tensorflow.org/api_do…
-
Tensorflow中的tf.argmax()函数
官方API定义 tf.argmax(input, axis=None, name=None, dimension=None) Returns the index with the …
-
tf.reshape TensorFlow reshape 函数
tf.reshape reshape( tensor, shape, name=None ) 调整一个张量 传入一个张量,这个操作返回一个张量,返回的张量…