Hey everyone, I have been trying to get Rock Paper Scissors to work. src: https://github.com/jxieeducation/HTM_sequential_learner/tree/master/rockpaperscissors
My generated data uses this encoding: 0: "rock", 1: "paper", 2: "scissors" An example generated data -> *scoreBeforeDuel*: score before the current round from the player1's perspective *player1, player2*: 0, 1 or 2 according to the encoding *player1,player2,scoreBeforeDuel* *0,1,0 *#score starts at 0, rock loses to paper *0,0,-1 *#since rock loses to paper, score is now -1 *2,2,-1 *#tied last round *2,1,-1* *1,0,0* I am doing TemporalMultiStep for 1 step prediction. My logic is that given score before a round, and the rock paper scissors hands, I should be able to predict the score after the round. However, my predictions are not working at all https://github.com/jxieeducation/HTM_sequential_learner/blob/master/rockpaperscissors/output.txt Thanks very much!
