bayesian_dense icon indicating copy to clipboard operation
bayesian_dense copied to clipboard

Many errors when using Keras 2.2 version

Open birajaghoshal opened this issue 7 years ago • 0 comments

want to replace below Dense layer with BayesianDense.

ct_input = Input(shape=(PATCH_HEIGHT, PATCH_WIDTH, 1))
pet_input = Input(shape=(PATCH_HEIGHT, PATCH_WIDTH, 1))

x = concatenate([ct_model, pet_model])
x = Dense(864, activation='relu')(x)
x = Dense(288, activation='relu')(x)
output = Dense(1, activation='sigmoid')(x)

I got many errors. E,g: ImportError: cannot import name... Init and Build Do you have any example to use with relevant output graphs.

birajaghoshal avatar Sep 18 '18 10:09 birajaghoshal