You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, with the aim to just load weights and test the model in evaluate method you can do smth like this:
model.load_weights('published_results/classifyapp/CLASSIFYAPP-94.83.h5')
# Test model
print('\n--- Testing model...')
p = model.predict_gen(generator=gen_test)[0]
The text was updated successfully, but these errors were encountered:
I've noticed that there was missing a method in
NCC_classifyapp
class:So, with the aim to just load weights and test the model in
evaluate
method you can do smth like this:The text was updated successfully, but these errors were encountered: