Do you mind taking a look the my description file.
On Fri, Jun 27, 2014 at 12:30 AM, Matthew Taylor <[email protected]> wrote: > Is this error happening during a swarm? If so, this means that the input > file you're passing into the swarm doesn't match the data description in > the swarm file. If the table has 7 columns, the swarm description needs to > define them. The error says is expects 5 columns. > > --------- > Matt Taylor > OS Community Flag-Bearer > Numenta > > > On Thu, Jun 26, 2014 at 5:54 PM, Joseph Skippings <[email protected] > > wrote: > >> Hello, >> >> "Exception: Invalid file format for " test_table.csv" - field >> type string float float float float float float" not one of ( string, >> datetime, int, float, bool). The table has 7 columns, I'm trying test how >> this prediction fairs without denoising. >> >> Sent from my iPhone >> Sent from my iPhone >> _______________________________________________ >> nupic mailing list >> [email protected] >> http://lists.numenta.org/mailman/listinfo/nupic_lists.numenta.org >> > > > _______________________________________________ > nupic mailing list > [email protected] > http://lists.numenta.org/mailman/listinfo/nupic_lists.numenta.org > >
# ---------------------------------------------------------------------- # Numenta Platform for Intelligent Computing (NuPIC) # Copyright (C) 2013, Numenta, Inc. Unless you have an agreement # with Numenta, Inc., for a separate license for this software code, the # following terms and conditions apply: # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see http://www.gnu.org/licenses. # # http://numenta.org/licenses/ # ---------------------------------------------------------------------- SWARM_DESCRIPTION = { "includedFields": [ { "fieldName": "Date", "fieldType": "datetime" }, { "fieldName": "Open", "fieldType": "float", "maxValue": 41.33, "minValue": 0.0 }, { "fieldName": "High", "fieldType": "float", "maxValue": 41.72, "minValue": 0.0 }, { "fieldName": "Low", "fieldType": "float", "maxValue": 41.02, "minValue": 0.0 }, { "fieldName": "Close", "fieldType": "float", "maxValue": 41.23, "minValue": 0.0 }, { "fieldName": "Volume", "fieldType": "long", "maxValue": 66062700, "minValue": 0.0 }, { "fieldName": "Adj Close", "fieldType": "float", "maxValue": 41.23, "minValue": 0.0 } ], "streamDef": { "info": "Volume", "version": 1, "streams": [ { "info": "yahoo_data_test", "source": "file://table.csv", "columns": [ "7" ] } ] }, "inferenceType": "TemporalMultiStep", "inferenceArgs": { "predictionSteps": [ 1 ], "predictedField": "Volume" }, "iterationCount": -1, "swarmSize": "medium" }
_______________________________________________ nupic mailing list [email protected] http://lists.numenta.org/mailman/listinfo/nupic_lists.numenta.org
