numenta / nupic.core-legacy

Implementation of core NuPIC algorithms in C++ (under construction)
http://numenta.org
GNU Affero General Public License v3.0
272 stars 276 forks source link

Create pure C++ example code for Network API #142

Open rhyolight opened 10 years ago

rhyolight commented 10 years ago

From: https://issues.numenta.org/browse/NPC-205

A simple "hello NuPIC" application demonstrating the simplest case. This might not do anything useful, but developers can use this as a base for building their own applications.

breznak commented 8 years ago

Is there a class providing a simple functionality for loading and parsing CSV files? Like in https://stackoverflow.com/questions/1120140/how-can-i-read-and-parse-csv-files-in-c I found VectorFile{,Sensor}.hpp but that's aimed at OPF NetworkAPI and quite bloated; @rhyolight ?

rhyolight commented 8 years ago

Not that I know of, @breznak. I see you opened a PR for that.

breznak commented 8 years ago

Matt,my PR is for pure c++ anomaly example, but at low level,not Network API

Marek Otahal :o)

rhyolight commented 8 years ago

Ah, I see. No, we don't have a C++ Network API example.

subutai commented 8 years ago

@rhyolight There's a simple one here:

nupic.core/src/examples/regions/HelloRegions.cpp

It doesn't really do anything useful, just demonstrates the API.