AttributeError: 'tuple' object has no attribute 'persistable'
Created by: LukeALee
paddle 踩坑: fluid.layers.auc(input=probs, label=labels)官方文档说该函数返回的是一个标量(scalar),但实际返回的是一个tuple, 所以如果不关心tuple里除了auc之外其他字段的话正确的用法是 auc,_,_=fluid.layers.auc(input=probs, label=labels), 如果关心的话,返回的tuple内容是 (auc,batch_auc,[batch_stat_pos,batch_stat_neg,stat_pos,stat_neg]) 希望官方能够及时更新文档,要不然怎么用呢。。。