Long time listener, first time caller I’ve been really excited about the NUPIC/Numenta project for some time, and I’m just recently getting to really sit down and start playing with the code. Really liking the HTM school videos by the way.
I’m wanting to run a prediction to output multiple values. Is that possible?
Looking through the documentation, I haven’t found how to do that. If I understand the theory correctly once it’s encoded there shouldn’t be any difference in predicting the SDR bits of one value vs. multiple.
In the context of this tutorial (https://github.com/numenta/nupic/tree/master/examples/opf/clients/hotgym/prediction/one_gym), I’m thinking something like this:
swarm_description.py
"includedFields": [
{
"fieldName": "timestamp",
"fieldType": "datetime"
},
{
"fieldName": "kw_energy_consumption",
"fieldType": "float",
"maxValue": 53.0,
"minValue": 0.0
},
{
"fieldName": "gal_water_usage",
"fieldType": "float"
}
],
. . .
"inferenceArgs": {
"predictionSteps": [
1
],
"predictedField": "kw_energy_consumption", "gal_water_usage"
},