We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
want to replace below Dense layer with BayesianDense.
I got many errors. E,g: ImportError: cannot import name... Init and Build
Do you have any example to use with relevant output graphs.
The text was updated successfully, but these errors were encountered: