gpt4 book ai didi

python - 如何在 scikit-learn 中预测未知函数的组成部分?

转载 作者:行者123 更新时间:2023-11-30 09:05:03 24 4
gpt4 key购买 nike

我有一些图表。所有这些图表都是两个参数(AlphaBeta)的函数。然而这个功能尚不清楚。我唯一知道的是,通过更改 Alpha 和 Beta,函数的形状会发生变化,但不清楚这两个参数如何影响该函数的形状。

我想使用机器学习工具(最好是 scikit-learn)通过提供任意图表来预测组件 AlphaBeta。我将提供更多细节:假设我有 3 个基于存储在 3 个文本文件中的点的图表:

#First graph: 1.txt
89.3131996411674 0.0
86.31206459803472 1.9218574062324632
81.87220673358236 4.212444252488191
76.41926314984194 7.090515235715248
69.70749592038558 10.46295619504502
4.695619238294171 42.982945242832166

#Second graph: 2.txt
89.31085880364263 0.0
86.14246621045181 0.11975843148903698
81.48739328101496 0.7686454222842645
75.88152851199536 1.501591710302762
69.15242620019211 4.034900351905526
4.674145681785713 41.09359256010945

#Third graph: 3.txt
89.30979468139782 0.0
86.05550911873416 -0.9850540767366983
81.20598538751082 -1.1003291465972356
75.39779664162057 -2.714132118366186
68.62777149709575 -1.3767373919651047
4.653517556961358 39.28302423686896

现在,如果我使用以下代码绘制它们:

import matplotlib.pyplot as plt
plt.plotfile('1.txt', delimiter=' ', cols=(0, 1),linestyle='--',linewidth=3,color='k',label=r'$1:Alpha\/\/=20\/\/and\/\/Beta\/\/=5$')
plt.plotfile('2.txt', delimiter=' ', cols=(0, 1),linestyle='-',linewidth=3,color='m',label=r'$2:Alpha\/\/=30\/\/and\/\/Beta\/\/=0.3$',newfig=False)
plt.plotfile('3.txt', delimiter=' ', cols=(0, 1),linestyle='-.', linewidth=3,color='r',label=r'$3:Alpha\/\/=40\/\/and\/\/Beta\/\/=0.2$',newfig=False)
lg=plt.legend(ncol=1, loc=2, fontsize=13)
plt.xlabel(r'$\mathrm{X}$', fontsize=16)
plt.ylabel(r'$\mathrm{Y}$', fontsize=16)
axes = plt.gca()
plt.gca().invert_xaxis()
plt.tick_params(axis='both', which='major', labelsize=13)
plt.show()

结果将是:

a busy cat现在我想给出一个任意图(点),我希望机器学习算法能够预测系数 Alpha 和 Beta。我需要指出的是,为了简单起见,我在这里只提供了 3 个图表,而实际上我有 1000 多个图表,并且所有图表都位于 graph.1 和 graph.3 之间。例如,如果我向代码提供与 graph.3 完全相同的点并要求预测 Alpha 和 Beta ,我期望得到:

Alpha = 40
Beta = 0.2

或者,如果我向代码给出与 graph.1 完全相同的点并要求预测 Alpha 和 Beta ,我期望得到:

Alpha = 20
Beta = 5

我不知道机器学习是否能够为我做到这一点,因为我不知道 AlphaBeta 到底如何影响图表的形状。 我只知道图表依赖于这两个组件,但我不知道这个函数是什么

我希望如果我为算法提供合理数量的图表(作为输入)作为训练集,代码可以预测(估计)任意给定点(图表)的 Alpha 和 Beta。

预先感谢您的时间和帮助!

最佳答案

从你的问题解释来看,不清楚你是否有每个 1000 图表的 alpha 和 beta 值,我假设你没有,你只有值。如果是这种情况,我假设上面的 alpha = 0.4beta = 0.2 只是一些虚拟值。

如果您假设您的图形是直线,您可以使用线性回归来创建给定图形的参数 a 和 b 的估计值,它们对应于拦截器(下面方程中的 a)和系数(下面方程中的 b)。通过这样做,您将了解 a 和 b 如何影响给定图形的函数形状。换句话说,您将了解什么是函数。

enter image description here

import pandas as pd
import numpy as np
from sklearn.linear_model import LinearRegression

df = pd.read_csv("1.txt", delimiter="\t")
x = df.x.values.reshape(-1, 1)
y = df.y.values.reshape(-1, 1)
model = LinearRegression(fit_intercept=True)
model.fit(x, y)
# This corresponds to a and b from equation above
print(model.coef_, model.intercept_)

但是,如果您的图形不是直线,您可以使用多项式回归。假设您认为您的函数是 2 次多项式,那么您将得到以下方程:

enter image description here

import pandas as pd
import numpy as np
from sklearn.linear_model import LinearRegression
from sklearn.preprocessing import PolynomialFeatures

df = pd.read_csv("1.txt", delimiter="\t")
x = df.x.values.reshape(-1, 1)
y = df.y.values.reshape(-1, 1)
poly = PolynomialFeatures(degree=2)
X_ = poly.fit_transform(x) # Transforming into degree two polynomial
model = LinearRegression(fit_intercept=True)
model.fit(X_, y)
# This corresponds to a,b and c from equation above
print(model.coef_, model.intercept_)

如果您愿意,您可以使用更高阶的多项式,它们将适合更复杂的函数。

通过完成所有这些,您将学习参数以了解给定的 x,输出是什么y。这不是你所描述的问题。您想了解alphabeta是什么。

如果您仔细阅读我所写的内容,您可能会发现 alpha 和 beta 是一些参数(例如 a、b、c 等),但为了计算出它们的近似值,您必须知道使用了多项式函数的次数,然后找出所使用的参数(a、b、c 等)alphabeta 是哪一个。

关于python - 如何在 scikit-learn 中预测未知函数的组成部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54163935/

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