Keras官方文档PDF版,带书签,一共307页,完整版,目前最好的版本!欢迎下载!model train on batch(x batch, y batch)
只需一行代码就能评估模型性能:
loss and metrics modelevaluate(x test, y test, batch size=128)
或者对新的数据生成预测:
classes =model predictx test, batch size=128)
构建一个问答系统,一个图像分类模型,一个神经图灵机,或者其他的
代码如下
import numpy as np
from matplotlib import pyplot as plt
# 用numpy生成数据t ,y
t = np.arange(1,10,1)
y = 0.9 * t + np.sin(t)
model = np.polyfit(t, y ,deg=1) # np.polyfit是numpy提供的加分分析方法,deg=1,指定模型为1阶的,返回值model为获得的模型
t2 = np.arange(-2,12,0.5) # 再生成一个间隔