Rajat sharma

Results 2 comments of Rajat sharma

can you elaborate on how to get the bfm.mat file? there is one error: "model = C['model'] KeyError:'model'" @YadiraF

solved: # model = Sequential() model = Add()([model1.output, model2.output]) model = Dense(hidden_dims, kernel_initializer=weights)(model) model = Dropout(dropout)(model) if deeper == True: model = Dense(hidden_dims//2, kernel_initializer=weights)(model) model = Dropout(dropout)(model) model = Dense(1,...