3
我想通過使用tensorflow.layers.dense
以ndarray格式的現有矩陣作爲初始權重來創建完全連接的圖層。我不知道該怎麼做。誰能幫忙?理想我想這樣做以下:如何在python中使用tf.layers.dense的現有權重(採用ndarray格式)?
weight = np.array([1,2,3],[1,2,3]) # as example
fully_connected = tf.layers.dense(input, hidden_unit, initializer = weight)
但我不知道,如果可能的話我可以直接做到這一點。
它的工作原理。謝謝! –