bstriner / bstriner/bayesian_dense

Many errors when using Keras 2.2 version

Open
#2 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
47
Forks
11
PR merge metrics
No merged PRs in 30d

Description

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.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.