为了账号安全,请及时绑定邮箱和手机立即绑定

机器学习-线性回归-使用gluon

标签:
机器学习

代码来自:https://zh.gluon.ai/chapter_supervised-learning/linear-regression-gluon.html

 1 from mxnet import ndarray as nd

 2 from mxnet import autograd

 3 from mxnet import gluon

 4 

 5 num_inputs = 2

 6 num_examples = 1000

 7 

 8 true_w = [2, -3.4]

 9 true_b = 4.2

10 

11 X = nd.random_normal(shape=(num_examples, num_inputs)) #1000行,2列的数据集

12 y = true_w[0] * X[:, 0] + true_w[1] * X[:, 1] + true_b #已知答案的结果

13 y += .01 * nd.random_normal(shape=y.shape) #加入噪音

14 

15 #1 随机读取10行数据

16 batch_size = 10

17 dataset = gluon.data.ArrayDataset(X, y)

18 data_iter = gluon.data.DataLoader(dataset, batch_size, shuffle=True)

19 

20 #2 定义回归模型

21 net = gluon.nn.Sequential()

22 net.add(gluon.nn.Dense(1))

23 

24 #3 参数初始化

25 net.initialize()

26 

27 #4 损失函数

28 square_loss = gluon.loss.L2Loss()

29 

30 #5 指定训练方法

31 trainer = gluon.Trainer(net.collect_params(), 'sgd', {'learning_rate': 0.1})

32     

33 #6 训练

34 epochs = 5

35 batch_size = 10

36 for e in range(epochs):

37     total_loss = 0

38     for data, label in data_iter:

39         with autograd.record():

40             output = net(data)

41             loss = square_loss(output, label)

42         loss.backward()

43         trainer.step(batch_size)

44         total_loss += nd.sum(loss).asscalar()

45     print("Epoch %d, average loss: %f" % (e, total_loss/num_examples))

46 

47 #7 输出结果

48 dense = net[0]

49 print(true_w)

50 print(dense.weight.data())

51 print(true_b)

52 print(dense.bias.data())


相对上一篇纯手动的处理方式,用gluon后代码明显更精简了。

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消