Skip to content

v0.4

Compare
Choose a tag to compare
@Rapfff Rapfff released this 09 Sep 09:21
· 129 commits to main since this release

A new way to create model states.
Now, to create a MC state with the two following transitions:

  • To state 1, observing 'a', with probability 0.6
  • To state 1, observing 'b', with probability 0.4

it's
MC_state([(1,'a',0.6),(1,'b',0.4)],0)
instead of
MC_state([0.6,0.4],[1,1],['a','b'],0)
0 being this state ID