We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Looking at the code in Parson algorithm,
% calculate diff model params init = ones(1, length(state_means)) / length(state_means); num_states = length(init); idx = repmat(1:num_states,num_states,1); emit_mean = state_means(idx) - state_means(idx'); emit_cov = state_covs(idx) + state_covs(idx');
What is the meaning of emit_mean and emit_cov? For example, for emit_cov we obtain:
OFF ON OFF 10 45 ON 45 80
It means that the variance OFF to ON is 45 ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Looking at the code in Parson algorithm,
What is the meaning of emit_mean and emit_cov?
For example, for emit_cov we obtain:
It means that the variance OFF to ON is 45 ?
The text was updated successfully, but these errors were encountered: