keras以tensorflow为后端的回归问题

import numpy as np
np.random.seed(1337)
from keras.models import  Sequential
from keras.layers import Dense
import matplotlib.pyplot as plt

# 创建一些数据
X = np.linspace(-1,1,50)
np.random.shuffle(X)
Y = 25 * X + 100 + np.random.normal(0,0.05,(50,))

# 数据图
plt.scatter (X,Y)
plt.show()

X_train,Y_train = X[:36],Y[:36]
X_test ,Y_test  = X[36:],Y[36:]

# 构建神经网络
model = Sequential()
model.add(Dense(output_dim=1,input_dim=1))
#model.add(Dense(output_dim=1,))

# 选择优化器和损失函数
model.compile(loss='mse',optimizer='sgd')

# 训练
print("Training.........................")
for step in range(501):
    cost = model.train_on_batch(X_train,Y_train)
    if step % 10 == 0:
        print('train cost',cost)

# 测试
print("Testing..........................")
cost = model.evaluate(X_test,Y_test,batch_size=14)
print('test cost',cost)
W,b = model.layers[0].get_weights()
print('Weight=',W,'\nbiase',b)

# 画出预测
Y_pred = model.predict(X_test)
plt.scatter(X_test,Y_test)
plt.plot(X_test,Y_pred)
plt.show()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值