当前位置:网站首页>HMM notes
HMM notes
2022-07-07 01:13:00 【twt10512】
You need to know three elements :
1、 Hidden state probability of the first day , The first day was far away Sunny probability 0.67, The probability of rainy days far away on the first day 0.33.
2、 The emission probability of the hidden state , a sunny day 0.8 Happy , a sunny day 0.2 angry . rain 0.4 Happy , rain 0.6 angry .
3、 State transition matrix , Sunny to sunny 0.8, Sunny to rainy 0.2. Rainy days to sunny days 0.4, Rainy days to rainy days 0.6.
viterbi algorithm : According to the dominant state sequence mood -> Invisible state sequence The weather

consider Max( The weather sequence is in 6 Probability of sunny days , The weather sequence is in 6 Probability of rainy days )
Dependent on the weather sequence in the 5 Probability of sunny days , The weather sequence is in 5 Probability of rainy days
The weather sequence is in 5 Probability of sunny days from Max( The weather sequence is in 4 Probability of sunny days To The weather sequence is in 5 Probability of sunny days
The weather sequence is in 4 Probability of rainy days To The weather sequence is in 5 Probability of sunny days ) Select the maximum probability route by The weather sequence is in 5 Probability of sunny days , Other low probability routes are not considered )
The weather sequence is in 5 Probability of rainy days from Max( The weather sequence is in 4 Probability of sunny days To The weather sequence is in 5 Probability of rainy days
The weather sequence is in 4 Probability of rainy days To The weather sequence is in 5 Probability of rainy days ) Select the maximum probability route by The weather sequence is in 5 Probability of sunny days , Other low probability routes are not considered )
Do this from the next day to the last day .
Because the first day is known .
边栏推荐
- 深入探索编译插桩技术(四、ASM 探秘)
- Informatics Olympiad YBT 1171: factors of large integers | 1.6 13: factors of large integers
- 【js】获取当前时间的前后n天或前后n个月(时分秒年月日都可)
- Openjudge noi 1.7 08: character substitution
- Explain in detail the matrix normalization function normalize() of OpenCV [norm or value range of the scoped matrix (normalization)], and attach norm_ Example code in the case of minmax
- UI控件Telerik UI for WinForms新主题——VS2022启发式主题
- Atomic in golang, and cas Operations
- A brief history of deep learning (II)
- NEON优化:矩阵转置的指令优化案例
- pyflink的安装和测试
猜你喜欢

《安富莱嵌入式周报》第272期:2022.06.27--2022.07.03

Chenglian premium products has completed the first step to enter the international capital market by taking shares in halber international

身体质量指数程序,入门写死的小程序项目

Return to blowing marshland -- travel notes of zhailidong, founder of duanzhitang

第六篇,STM32脉冲宽度调制(PWM)编程

Dr selection of OSPF configuration for Huawei devices
![[牛客] B-完全平方数](/img/bd/0812b4fb1c4f6217ad5a0f3f3b8d5e.png)
[牛客] B-完全平方数

阿里云中mysql数据库被攻击了,最终数据找回来了

Telerik UI 2022 R2 SP1 Retail-Not Crack

动态规划思想《从入门到放弃》
随机推荐
BFS realizes breadth first traversal of adjacency matrix (with examples)
Summary of being a microservice R & D Engineer in the past year
随时随地查看远程试验数据与记录——IPEhub2与IPEmotion APP
Link sharing of STM32 development materials
from . cv2 import * ImportError: libGL. so. 1: cannot open shared object file: No such file or direc
Configuring OSPF basic functions for Huawei devices
接收用户输入,身高BMI体重指数检测小业务入门案例
mysql: error while loading shared libraries: libtinfo. so. 5: cannot open shared object file: No such
Return to blowing marshland -- travel notes of zhailidong, founder of duanzhitang
pytorch之数据类型tensor
A brief history of deep learning (I)
Boot - Prometheus push gateway use
在jupyter中实现实时协同是一种什么体验
Pytorch中torch和torchvision的安装
Zabbix 5.0:通过LLD方式自动化监控阿里云RDS
【批處理DOS-CMD命令-匯總和小結】-字符串搜索、查找、篩選命令(find、findstr),Find和findstr的區別和辨析
Data type of pytorch tensor
mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such
Periodic flash screen failure of Dell notebook
golang中的WaitGroup实现原理