执行以下操作后,我在CNN model
上运行了GoogleColab
:
score = model.evaluate(x_test, y_test, verbose=1)
print('Test loss:', score[0])
print('Test accuracy:', score[1])
# Save the trained weights in to .h5 format
model.save_weights("Yolo_Basic_model2.h5")
print("Saved the model to disk")
我想将其保存到我的local pc
中。
我该怎么做?