Hi, are there any examples of pass through encoder model params? I’m trying to pass in my encoded categorical values right into the temporal memory. The rows of the input file are encoding bit strings instead of raw values, such as: [1,1,1,1,1,0,0,0,0,0,0,0,0,0,…] of length 40, and I’m currently getting this.
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’
Here’s where I feed the inputs into NuPIC, each ‘row’ is a binary vector like the one shown above:
for row in csvReader:
counter += 1 if (counter % 100 == 0): print "Read %i lines..." % counter letter = row result = model.run({ "passThruSeq": letter })
Here is my model params file too:
Thanks!!