Sklearn gaussianprocessregistrator修复内核超参数?

2024-09-25 04:29:21 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试使用sklearn的高斯过程来分解时间序列。在

kernel = ConstantKernel() * 
RBF() *
ExpSineSquared(periodicity=7)

有没有办法修复periodicity_bounds=(7, 7)以外的参数

如果我做了kernel.hyperparameters我可以看到它们有一个属性fixed=False

我该如何设置为真呢?在


Tags: 参数属性过程时间序列sklearnkernelfixed
1条回答
网友
1楼 · 发布于 2024-09-25 04:29:21

它没有记录在内核上。但是超参数可以通过以下方法修复。在

ExpSineSquared(periodicity=7, periodicity_bounds='fixed')

相关问题 更多 >