[問題] keras自編碼
input_img = Input(shape=(784,))
code = Input(shape=(2,))
# encode layers
encoded = Dense(128, activation='relu')(input_img)
encoded = Dense(16, activation='relu')(encoded)
encoded = Dense(10, activation='relu')(encoded)
code = Dense(encoding_dim)(encodeed)
# decode layers
decoded = Dense(10, activation='relu')(code)
decoded = Dense(16, activation='relu')(decoded)
decoded = Dense(128, activation='relu')(decoded)
decoded = Dense(784, activation='tanh')(decoded)
autoencoder = Model(inputs=input_img, outputs=decoded)
encoder = Model(inputs=input_img, outputs=code)
以上輸入輸出做model沒問題
但下面這句就不能過了
decoder = Model(inputs=code, outputs=decoded)
我想利用訓練完的網路
可以自己任意丟code這一層的值
讓它產生新的decoded資料
所很直覺得就寫出最後那句
不明白為什麼不行
感謝高手指教
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 101.12.197.27
※ 文章網址: https://www.ptt.cc/bbs/DataScience/M.1544163508.A.A28.html
推
12/07 19:21,
6年前
, 1F
12/07 19:21, 1F
→
12/07 19:21,
6年前
, 2F
12/07 19:21, 2F
推
12/07 23:50,
6年前
, 3F
12/07 23:50, 3F
→
12/08 07:06,
6年前
, 4F
12/08 07:06, 4F
→
12/08 07:06,
6年前
, 5F
12/08 07:06, 5F
→
12/08 07:06,
6年前
, 6F
12/08 07:06, 6F
推
12/09 00:56,
6年前
, 7F
12/09 00:56, 7F
討論串 (同標題文章)
完整討論串 (本文為第 1 之 2 篇):
3
7
DataScience 近期熱門文章
PTT數位生活區 即時熱門文章