gpt4 book ai didi

function - IPython笔记本交互函数: how to save the updated function parameters

转载 作者:行者123 更新时间:2023-12-02 20:16:27 25 4
gpt4 key购买 nike

我在 Ipython 笔记本中编写了下面的代码来生成一个由参数 a 控制的 sigmoid 函数,参数 a 定义了 sigmoid 中心的位置,b 定义了其宽度:

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt

def sigmoid(x,a,b):
#sigmoid function with parameters a = center; b = width
s= 1/(1+np.exp(-(x-a)/b))
return 100.0*(s-min(s))/(max(s)-min(s)) # normalize sigmoid to 0-100

x = np.linspace(0,10,256)
sigm = sigmoid(x, a=5, b=1)
fig = plt.figure(figsize=(24,6))
ax1 = fig.add_subplot(2, 1, 1)
ax1.set_xticks([])
ax1.set_xticks([])
plt.plot(x,sigm,lw=2,color='black')
plt.xlim(x.min(), x.max())

我想为参数 a 和 b 添加交互性,因此我重写了该函数,如下所示:

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
from IPython.html.widgets import interactive
from IPython.display import display

def sigmoid_demo(a=5,b=1):
x = np.linspace(0,10,256)
s = 1/(1+np.exp(-(x-a)/(b+0.1))) # +0.1 to avoid dividing by 0
sn = 100.0*(s-min(s))/(max(s)-min(s)) # normalize sigmoid to 0-100
fig = plt.figure(figsize=(24,6))
ax1 = fig.add_subplot(2, 1, 1)
ax1.set_xticks([])
ax1.set_yticks([])
plt.plot(x,sn,lw=2,color='black')
plt.xlim(x.min(), x.max())

w=widgets.interactive(sigmoid_demo,a=5,b=1)
display(w)

是否可以在 slider 修改时将修改后的 sigmoid 函数参数 a 和 b 动态保存到变量中,以便它们可以在另一个子图或单独的图中使用,并进行进一步的计算。?

我已经浏览了我能找到的所有交互式小部件的示例,但没有看到任何指向该方向的内容(这些小部件相当新,因此它们的文档似乎不像其他功能那样广泛)。任何正确方向的建议都将受到赞赏。

最佳答案

您想要手动创建 float 小部件:

from IPython.html.widgets import FloatSlider

# same as before

F1 = FloatSlider(value=5, min=0, max=10)
w=interactive(sigmoid_demo, a=F1, b=7)
display(w)

然后您可以随时访问F1.value,它将是当前的 slider 值。

您还可以循环访问w.widgets,但这很痛苦。

关于function - IPython笔记本交互函数: how to save the updated function parameters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27492056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com