Skip to content

Commit d00506d

Browse files
author
Garrett Brown
committed
Fixed convolutional model
1 parent 8beecad commit d00506d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Recon3DModels.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,5 @@ def Build(self):
123123
decoded = Conv3D(1, (3, 3), activation='sigmoid', padding='same')(z)
124124

125125
autoencoder = Model(inputs=[input1, input2], outputs=decoded)
126-
autoencoder.compile(optimizer='adadelta', loss='binary_crossentropy')
127126

128-
self.Model = Model(input, modelT)
127+
self.Model = Model(input, autoencoder)

0 commit comments

Comments
 (0)