gpt4 book ai didi

python - 我们可以通过 HMM 进行监督学习吗?

转载 作者:行者123 更新时间:2023-12-02 00:33:37 25 4
gpt4 key购买 nike

我相信我理解 HMM 的核心。通过 HMM,我们解决了评估(发射序列的概率)、解码(最可能的隐藏序列)和学习问题(从观察到的发射序列集学习转换和发射概率矩阵)。

我的问题与学习问题有关。我有发射序列,但我也有每个序列的相关特征(意思是隐藏状态值,但隐藏状态的数量未知)。与 HMM 的学习问题一样,我们估计隐藏序列(大小和概率矩阵),为此我们只需要发射序列(如果事先不知道,可以优化隐藏序列的大小)。

我正在使用 HMM library为了我的计算。当然,它没有我想要的选项。

import numpy as np
import pandas as pd

from hmmlearn import hmm

filenames = [f for f in os.listdir(dir_path) if '.csv' in f.lower()]
d1 = pd.read_csv(dir_path + filenames[0]).as_matrix() # Shape = [m, 3] => first two column is featute and last is the emission-state
d2 = pd.read_csv(dir_path + filenames[1]).as_matrix() # Shape = [m, 3]


##
remodel = hmm.GaussianHMM(n_components=4, covariance_type="full", n_iter=100)

remodel.fit(d1[:, 0:2]) # Problem would have been solved if there was supervised option to pass the states as well

pred_1 = remodel.predict(d1[:, 0:2])
true_1 = d1[:, -1] # Last column is state of the feature in 1, 2 column.

pred_2 = remodel.predict(d2[:, 0:2])
true_2 = d2[:, -1]

有没有一种方法可以在 HMM 中进行监督学习,如果可以,那么怎么做?如果不能,我还能用 HMM 解决我的问题吗?如果可能的话怎么办?

最佳答案

hmmlearn 未实现监督学习 ( hmmlearn#109 )。

seqlearn库实现了受监督的 HMM,但似乎没有实现 GMM。

图书馆pomegranate然而似乎是用高斯混合模型来实现受监督的隐马尔可夫模型。像这样:

import pomegranate as pg

X = ...
y = ...
distribution = pg.MultivariateGaussianDistribution
model = pg.HiddenMarkovModel.from_samples(distribution, n_components=5, X=X, labels=y, algorithm='labeled')

关于python - 我们可以通过 HMM 进行监督学习吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50725830/

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