Update 'algorithm/optimization/gradient.py'

This commit is contained in:
TerenceLiu 2022-11-10 17:17:25 +08:00
parent 2cff4f6dd3
commit 78010d8b1b
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ class gd2d_compete(object):
def initialization(self, environ): def initialization(self, environ):
pio.renderers.default = environ # 'notebook' or 'colab' or 'jupyterlab' pio.renderers.default = environ # 'notebook' or 'colab' or 'jupyterlab'
self.timer = 0 self.timer = 0
self.wg_expr = widgets.Dropdown(options=[("(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)", "(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)"), ("(sin(x1) - 2) ** 2 + (sin(x2) - 2) ** 2", "(sin(x1) - 2) ** 2 + (sin(x2) - 2) ** 2")], value="(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)", descrption="Expression") self.wg_expr = widgets.Dropdown(options=[("(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)", "(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)"), ("x1 - x2 + 2x1*x2 + 2x1**2 + x2**2", "x1 - x2 + 2x1*x2 + 2x1**2 + x2**2")], value="(1 - 8 * x1 + 7 * x1**2 - (7/3) * x1**3 + (1/4) * x1**4) * x2**2 * E**(-x2)", descrption="Expression")
self.wg_x0 = widgets.Text(value="0,2", description="Init point:") self.wg_x0 = widgets.Text(value="0,2", description="Init point:")
self.wg_lr = widgets.FloatText(value="0.1", description="step size:") self.wg_lr = widgets.FloatText(value="0.1", description="step size:")
self.wg_direction_p0 = widgets.Text(value="0.5,1", description="Direction (a1)") self.wg_direction_p0 = widgets.Text(value="0.5,1", description="Direction (a1)")