当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.keras.models.model_from_config用法及代码示例


从其配置实例化 Keras 模型。

用法

tf.keras.models.model_from_config(
    config, custom_objects=None
)

参数

  • config 配置字典。
  • custom_objects 可选字典映射名称(字符串)到反序列化期间要考虑的自定义类或函数。

返回

  • 一个 Keras 模型实例(未编译)。

抛出

  • TypeError 如果 config 不是字典。

用法:

# for a Functional API model
tf.keras.Model().from_config(model.get_config())

# for a Sequential model
tf.keras.Sequential().from_config(model.get_config())

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.models.model_from_config。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。