Google Colab: как сохранить вес модели cnn - PullRequest
0 голосов
/ 19 октября 2018

Я запустил 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.Как я могу сделать то же самое?

...