當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。