Tensorflow | 踩坑纪实


1 计算损失函数时,logits参数是什么

损失函数的计算涉及到Tensorflow的两个常用函数:

tf.nn.sigmoid_cross_entropy_with_logits(labels, logits)
tf.nn.softmax_cross_entropy_with_logits_v2(labels, logits) 
#写这段文字时softmax_cross_entropy_with_logits被明确标为即将弃用的不建议函数

当我初次使用Tensorflow时,我天真的认为logits就是预测值(我一般称之为y_hat)。其实不然,参数logits为输出层的激活值(activation),与预测值的关系通常为:

y_hat = tf.nn.sigmoid (activation)
y_hat = tf.nn.softmax (activation)

2 用sigmoid作为输出层激活函数时,损失函数无法降为0

这很有可能时因为你的标签不是0或1,而是0到1间的一个数。根据交叉熵损失函数的定义,只有logit和label同时为0或同时为1时,其值为0。因此,在这labels不为0的情况下,损失函数的值是无法达到0的。


3 MNIST怎么使用


4 tf.nn.softmax_cross_entropy_with_logits_v2函数认为哪个维度是类别维度?

在一次跑mnist的实验中,我把类别维放在第一维(dim=0),并使用了tf.nn.softmax_cross_entropy_with_logits_v2计算熵,结果:

Epoch    1: cost=1611.621314344
Epoch    6: cost=17532.561093204
Epoch   11: cost=33408.859425080

可见,模型不收敛。几小时后,我发现了问题:tf.nn.softmax_cross_entropy_with_logits_v2默认类别维度为最后一维(dim=-1)。查阅文档:

tf.nn.softmax_cross_entropy_with_logits_v2(
    _sentinel=None,
    labels=None,
    logits=None,
    dim=-1,
    name=None
)

Args:

  • _sentinel: Used to prevent positional parameters. Internal, do not use.
  • labels: Each vector along the class dimension should hold a valid probability distribution e.g. for the case in which labels are of shape [batch_size, num_classes], each row of labels[i] must be a valid probability distribution.
  • logits: Unscaled log probabilities.
  • dim: The class dimension. Defaulted to -1 which is the last dimension.
  • name: A name for the operation (optional).

从文档中我们知道了,参数dim指定了类别的维度。因此在使用这个函数时,记得指定dim参数。添加dim=0后,实验结果:

单层Softmax
Epoch    1: cost=1.747955866
Epoch    6: cost=0.334705674
Epoch   11: cost=0.291128567
Epoch   16: cost=0.271443650
Epoch   21: cost=0.266406643
Epoch   26: cost=0.259507637
Epoch   31: cost=0.255616793
Epoch   36: cost=0.252413219
Epoch   41: cost=0.254052425
Epoch   46: cost=0.254678538
Opitimization Finished!

三层softmax
Epoch    1: cost=9.467425473
Epoch    6: cost=2.299335675
Epoch   11: cost=1.818574688
Epoch   16: cost=0.992218607
Epoch   21: cost=0.570668126
Epoch   26: cost=0.229845069
Epoch   31: cost=0.150805521
Epoch   36: cost=0.119380749
Epoch   41: cost=0.101064101
Epoch   46: cost=0.082242706
Opitimization Finished!

祝大家的模型永远收敛~


5 tf.argmax的作用是什么

官方文档:

tf.argmax(
    input,
    axis=None,
    name=None,
    dimension=None,
    output_type=tf.int64
)
  • Returns the index with the largest value across axes of a tensor. (deprecated arguments)

Args:

  • input: A Tensor. Must be one of the following types: float32, float64, int32, uint8, int16, int8, complex64, int64, qint8, quint8, qint32, bfloat16, uint16, complex128, half, uint32, uint64.
  • axis: A Tensor. Must be one of the following types: int32, int64. int32 or int64, must be in the range [-rank(input), rank(input)). Describes which axis of the input Tensor to reduce across. For vectors, use axis = 0.
  • output_type: An optional tf.DType from: tf.int32, tf.int64. Defaults to tf.int64.
  • name: A name for the operation (optional).

根据文档我们知道,tf.argmax返回张量在某个方向上最大值的下标,运算后会使原张量降维。第二个参数axis指定了进行这个运算的维度,也就是因运算而消减的那个维度。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容