Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 scikit-learn 进行高斯过程回归建模。我的数据没有标准化。该模型总是返回 0 到 1 之间的标准差值,这与我的数据不符。有谁知道如何重新调整标准偏差值以获得实际标准偏差?
我使用的一种方法是在 scikit-learn 中使用标准缩放器。在训练模型之前标准化您的数据集是很自然的。
过程如下:
这是std_scaler 的链接
希望这会有所帮助:)