contrib.keras.models.load_model

tf.contrib.keras.models.load_model

tf.contrib.keras.models.load_model

load_model(
    filepath,
    custom_objects=None
)

Defined in tensorflow/contrib/keras/python/keras/models.py.

Loads a model saved via save_model.

Arguments:

filepath: String, path to the saved model.
custom_objects: Optional dictionary mapping names
    (strings) to custom classes or functions to be
    considered during deserialization.

Returns:

A Keras model instance. If an optimizer was found
as part of the saved model, the model is already
compiled. Otherwise, the model is uncompiled and
a warning will be displayed.

Raises:

ImportError: if h5py is not available.
ValueError: In case of an invalid savefile.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/keras/models/load_model

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部