gpt4 book ai didi

python - 数组名下划线含义

转载 作者:太空宇宙 更新时间:2023-11-03 15:43:24 24 4
gpt4 key购买 nike

我对下面的示例代码有疑问。我确信传递给 gp.predict 行的值是来自 X 数组的值。但是,为什么它被用作X_?有人能解释一下 X_ 或数组 name_ 在 python 中的含义吗?

rng = np.random.RandomState(4)
X = rng.uniform(0, 5, 10)[:, np.newaxis]
y = np.sin((X[:, 0] - 2.5) ** 2)
gp.fit(X, y)

# Plot posterior
plt.subplot(2, 1, 2)
X_ = np.linspace(0, 5, 100)
y_mean, y_std = gp.predict(X_[:, np.newaxis], return_std=True)
plt.plot(X_, y_mean, 'k', lw=3, zorder=9)
plt.fill_between(X_, y_mean - y_std, y_mean + y_std,
alpha=0.2, color='k')

最佳答案

这不是尾随下划线的“正确”使用。这里似乎只是一个任意变量。

According to the Python style guide :

single_trailing_underscore_: used by convention to avoid conflicts with Python keyword, e.g.

您经常会看到尾部下划线用于标记某些内容 list_class_ 等。

关于python - 数组名下划线含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51414147/

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