python应用Axes3D绘图(批量梯度下降算法)

作者:老手er 时间:2023-04-19 11:41:45 

本文实例为大家分享了python批量梯度下降算法的具体代码,供大家参考,具体内容如下

问题:

将拥有两个自变量的二阶函数绘制到空间坐标系中,并通过批量梯度下降算法找到并绘制其极值点

大体思路:

首先,根据题意确定目标函数:f(w1,w2) = w1^2 + w2^2 + 2 w1 w2 + 500
然后,针对w1,w2分别求偏导,编写主方法求极值点
而后,创建三维坐标系绘制函数图像以及其极值点即可

具体代码实现以及成像结果如下:


import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d.axes3d import Axes3D

#f(w1,w2) = w1^2 + w2^2 + 2*w1*w2 + 500
def targetFunction(W): #目标函数
w1,w2 = W
return w1 ** 2 + w2**2 + 2*w1*w2+500

def gradientFunction(W): #梯度函数:分别对w1,w2求偏导
w1,w2 = W
w1_grad = 2*w1+2*w2
w2_grad = 2*w2 + 2*w1
return np.array([w1_grad,w2_grad])

def batch_gradient_distance(targetFunc,gradientFunc,init_W,learning_rate = 0.01,tolerance = 0.0000001): #核心算法
W = init_W
target_value = targetFunc(W)
counts = 0 #用于计算次数
while counts<5000:
gradient = gradientFunc(W)
next_W = W-gradient*learning_rate
next_target_value = targetFunc(next_W)
if abs(next_target_value-target_value) <tolerance:
print("此结果经过了", counts, "次循环")
return next_W
else:
W,target_value = next_W,next_target_value
counts += 1
else:
print("没有取到极值点")

if __name__ == '__main__':
np.random.seed(0) #保证每次运行随机出来的结果一致
init_W = np.array([np.random.random(),np.random.random()]) #随机初始的w1,w2
w1,w2 = batch_gradient_distance(targetFunction,gradientFunction,init_W)
print(w1,w2)
#画图
x1=np.arange(-10,11,1) #为了绘制函数的原图像
x2=np.arange(-10,11,1)

x1, x2 = np.meshgrid(x1, x2) # meshgrid :3D坐标系

z=x1**2 + x2**2 + 2*x1*x2+500

fig = plt.figure()
ax = Axes3D(fig)
ax.plot_surface(x1, x2, z) #绘制3D坐标系中的函数图像
ax.scatter(w1,w2, targetFunction([w1,w2]), s=50, c='red') #绘制已经找到的极值点
ax.legend() #使坐标系为网格状

plt.show() #显示

函数以及其极值点成像如下(红点为极值点):

python应用Axes3D绘图(批量梯度下降算法)

来源:https://blog.csdn.net/qq_43608549/article/details/100565419

标签:python,梯度下降算法
0
投稿

猜你喜欢

  • django中模板的html自动转意方法

    2023-06-28 15:33:49
  • python中super()函数的理解与基本使用

    2023-07-02 08:00:33
  • MySQL 的启动和连接方式实例分析

    2024-01-21 09:06:03
  • 如何用Axure制作Tab页签

    2009-02-08 17:53:00
  • Go语言io pipe源码分析详情

    2024-01-31 00:21:46
  • Python实现根据IP地址和子网掩码算出网段的方法

    2021-11-20 01:40:41
  • 在图片上显示左右箭头类似翻页的代码

    2024-04-19 09:48:20
  • 利用 Python 实现随机相对强弱指数 StochRSI

    2023-03-23 22:31:08
  • 微信小程序module.exports模块化操作实例浅析

    2023-07-02 05:30:27
  • python爬虫如何解决图片验证码

    2021-04-27 11:58:57
  • Javascript中作用域的详细介绍

    2024-04-18 10:02:09
  • 使用Pyhton集合set()实现成果查漏的例子

    2023-10-20 17:49:00
  • python+numpy实现的基本矩阵操作示例

    2023-07-16 13:52:37
  • Safari参考样式库之webkit

    2009-07-26 09:50:00
  • python实现将英文单词表示的数字转换成阿拉伯数字的方法

    2022-07-12 03:01:11
  • python入门教程之基本算术运算符

    2023-05-24 11:48:21
  • Python+Pygame实战之英文版猜字游戏的实现

    2021-01-18 01:40:32
  • python如何用pyecharts制作词云图

    2021-05-16 09:35:46
  • Python3读取zip文件信息的方法

    2022-08-15 01:54:20
  • asp连接MYSQL数据库的连接字符串(参数OPTION)

    2009-03-09 18:24:00
  • asp之家 网络编程 m.aspxhome.com