Skip to content

Commit f7b053c

Browse files
authored
Update README.md
1 parent 7793676 commit f7b053c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Implementation of Forward-Backward and Viterbi Algorithm in Java
88
**Example:** Lets Assume,
99
To start off, a Hidden Markov Model consists of the following properties:
1010

11-
![States photo](https://github.com/siddarthjha/Hidden-Markov-Model-Java/blob/master/images/5.png)
11+
![States photo](images/5.png)
1212

1313

1414
**Hidden States S**: in the example above the hidden states are Sunny and Rainy, and they get grouped into a set S.
@@ -33,14 +33,14 @@ Similarly if today is Rainy, the probability that tomorrow is Rainy as well is 0
3333
###### For example,
3434
the probability of Clean on a Sunny day is 0.1, whereas the probability of Clean on a Rainy day is 0.45.
3535

36-
![Emission Probability](https://github.com/siddarthjha/Hidden-Markov-Model-Java/blob/master/images/2.png)
36+
![Emission Probability](images/2.png)
3737

3838
<br>
3939
This is all very nice, but immediately we are faced with three problems:
4040

41-
* [The Likelihood problem](https://github.com/siddarthjha/Hidden-Markov-Model-Java/blob/master/Likelihood%20Problem/Forward.java) (Forward-Backward)
41+
* [The Likelihood problem](Likelihood%20Problem/Forward.java) (Forward-Backward)
4242

43-
* [The Decoding problem](https://github.com/siddarthjha/Hidden-Markov-Model-Java/blob/master/Decoding%20Problem/Viterbi.java) (Viterbi)
43+
* [The Decoding problem](Decoding%20Problem/Viterbi.java) (Viterbi)
4444

4545
* The Learning problem (Waum-Belch)
4646

0 commit comments

Comments
 (0)