美文网首页
Keras函数式 API

Keras函数式 API

作者: poteman | 来源:发表于2019-08-03 11:56 被阅读0次

Keras 函数式 API 是定义复杂模型(如多输出模型、有向无环图,或具有共享层的模型)的方法。

  • 非函数式api
import tensorflow as tf
import numpy as np
from tensorflow import keras
from tensorflow.keras import Sequential
from tensorflow.keras.layers import Dense

model = Sequential()
model.add(Dense(units=1, input_shape=[1]))

model.compile(optimizer='sgd', loss='mean_squared_error')

xs = np.array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], dtype=float)
ys = np.array([1.0, 1.5, 2.0, 2.5, 3.0, 3.5], dtype=float)

model.fit(xs, ys, epochs=1000)

print(model.predict([7.0]))
  • 函数式api
import tensorflow as tf
import numpy as np
from tensorflow import keras
from tensorflow.keras.models import Model 
from tensorflow.keras.layers import Dense, Input

house = Input(shape=[1])
price = Dense(1)(house)
model = Model(inputs=house, outputs=price)

model.compile(loss='mse', optimizer='sgd')
xs = np.array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], dtype=float)
ys = np.array([1.0, 1.5, 2.0, 2.5, 3.0, 3.5], dtype=float)

model.fit(xs, ys, epochs=1000)

print(model.predict([7.0]))

【参考资料】
函数式 API 指引

相关文章

  • keras定义模型的两种方法

    Keras定义模型有两种方法。 面向对象式的API 函数式的API keras自定义计算需要用到lamda层 ht...

  • 构建高级模型(05)

    函数式 API tf.keras.Sequential 模型是层的简单堆叠,无法表示任意模型。使用 Keras 函...

  • Keras函数式 API

    Keras 函数式 API 是定义复杂模型(如多输出模型、有向无环图,或具有共享层的模型)的方法。 非函数式api...

  • keras

    Keras设计了俩种构建模型的方式函数式模型API和顺序式模型API 顺序式模型API构建模型示例: from k...

  • (5)keras函数式API

    一、目录1、多输入模型2、多输出模型3、模块inception残差链接共享参数4、自定义模块5、模型集成6、回调函...

  • DL4J中文文档/Keras模型导入/函数模型

    导入Keras函数模型入门 假设你使用Keras的函数API开始定义一个简单的MLP: 在Keras,有几种保存模...

  • Keras多输出模型构建

    1、多输出模型 使用keras函数式API构建网络: 2、自定义loss函数 3、批量训练 4、调试 在自定义的l...

  • keras函数式编程如何使用BN还有RELU

    在使用keras函数方法编程的时候遇到了两个问题 keras的函数式方法应该是keras.activations....

  • 用Keras的函数式API创建模型

    为什么要用Keras的函数式API创建模型? 支持创建多输入多输出模型 支持创建非线性模型,eg: 残差模块 支持...

  • TensorFlow2.0教程-keras 函数api

    TensorFlow2.0教程-keras 函数api 完整tensorflow2.0教程代码请看tensorfl...

网友评论

      本文标题:Keras函数式 API

      本文链接:https://www.haomeiwen.com/subject/kphjdctx.html