Help for this page

Select Code to Download


  1. or download this
    %nodes=( root => { parents => [],
                       probs => [0.01]}, # P(root)
    ...
                       probs => [0.12,0.24,   # P(other|!root,!some), P(ot
    +her|!root,some)
                                 0.81,0.18]}, # P(other|root,!some), P(oth
    +er|root,some)
             );
    
  2. or download this
    # the state you start from
    %state=(root=>1,some=>0);
    ...
     $i=($i<<2)+$state{$_} # this is a simple encoding. Just use the same 
    +for updating and accessing
    }
    $prob=$nodes{other}{probs}[$i];
    
  3. or download this
    use XML::Simple;
    print XMLout(\%nodes);