2016-06-07 30 views

回答

2

今天我有同樣的問題,我結束了此解決方案:

def unravel_argmax(argmax, shape): 
    output_list = [] 
    output_list.append(argmax // (shape[2] * shape[3])) 
    output_list.append(argmax % (shape[2] * shape[3]) // shape[3]) 
    return tf.pack(output_list) 

這裏是一個IPython的筆記本usage example(我用它來統籌argmax位置轉發到我的unpooling方法)

+0

很酷。用tensorflow實現Deconvnet。 –