| blog

Predicting Movement with IR Sensors

by Erik Blas, Community Contributor

On April 24, 2013 Numenta hosted their first hackathon, a private event commemorating the recent release of NuPIC (Numenta Platform for Intelligent Computing) to the OSS world.

Predicting Movement with IR Sensors Image

My Experience at the First NuPIC Hackathon

A guest blog post by Erik Blas

You can find the project on Github, and more information on the the main page of this site.

One could not begin to describe my initial excitement at receiving an invitation to attend. I’ve been inspired by Jeff Hawkin’s work since I stumbled across his 2007 TED talk, and later reading his book On Intelligence.

This being my first hackathon, I decided to just assume it was going to be like a typical crunch time day. Introduction pow wow and problem scoping, each person swarms or picks up their piece of the puzzle, and we go about the process of turning b1p2 (1 beer to 2 pizza slices) into code.

This pretty much took place in fits and starts, as this is the initial offering of NuPIC we were working with. Documentation was (still is) sparse, and there were no community established workflows for getting new OPF clients off the ground. Up until just a few weeks prior, all the code we were working with was in use only for Grok Solutions’ clients.

Strangers in a strange land, we were.

There was a lot of confusion on just how to use the software. Numenta provided a VM with pre-baked environments using Vagrant and Virtual Box. A few successfully built the software on their own platform of choice. The static binding of certain libs and some of the build steps had a propensity to make porting difficult, as well as the reliance on Python 2.6.

Once building was no longer an issue (in general), the next part was getting all of the tests and experiments running. Environment issues played the lead gremlin in this instance, but once the proper library paths were exported we were victorious!

The OPF

The Online Prediction Framework ties together all the disparate parts of the CLA functions and HTM regions. To break it down, you’re working with a data stream and its subsequent encoding. A data stream can be (and often is for pre-training) a CSV file, live streaming data, a generator, etc.

A client takes the data stream, and feeds it to an instance of a model, one record at a time, which then returns your prediction result for the next N steps (depending on your model configuration). This result and a bunch of meta is stored for you in a ModelResult object.

Steps here mean the feeding of 1 record into a model and its return of the ModelResult object, not necessarily tied to clock time. Models can either be pre-trained and loaded from disk, or an instance of a new model.

Data and Encoders

A lot of us spent the majority of our time trying to figure out the best encoding schema for our data, once we managed to wrap our heads around the OPF. This has remained true for all of my current projects with the OPF, and I suspect will be the stickiest point for other novices.

One has to be able to conceptualize your problem as a sequence, temporal or otherwise, and then piecemeal that sequence into individual parts, associative in some way to the inference you’re looking for. For my demo, predepic, it turned out to be a simple classification problem: Which sensor shows the most activity, and thus indicates my position?

Once you get past this point, it’s a matter of running test sequences and tweaking your model parameters (I may write more on this in a subsequent post).

Demos

Watch the Footage

No, seriously they’re cool, and I cannot give them justice.

Here’s mine:



Implications Gleaned from the Demos

One key thing that jumped out at me, is the different types of data we were able to feed to NuPIC models, and achieve high value results. With the only real project-specific work being contained in model parameters!

Everything from MIDI file data to record classification strings, and NuPIC munched on them all. All one needs is an encoder to handle the data types, and you can go far with the encoders provided by the OPF.

Concluding Thoughts, and What I’m Up To

The immensely gracious hosting and helpfulness of the Numenta staff cannot be overstated! Beyond the gloriously delicious food, endless supply of beer and other essentials, and the ample and comfortable workspaces, the conversations over NuPIC and the work going forward blew me away the most.

Special shout out to:

  • Ian, for lending me your parts and helping me refine my project!
  • Matt, your tireless work in the community is awesome man. Do you not sleep?
  • Jeff, your efforts continue to inspire! Thank you for opening this project to the community.
  • Subutai, for your conversations and explanations.
  • Scott, I’m not sure many of our projects would have gotten off the ground without your help and quick production of simple examples.
  • Office Management Staff, for keeping us alive and making everyone feel at home!
  • Pete, for not laughing at my lame html and javascript skills while simultaneously making my web console not suck.
  • Winfried, for the fascinating discussions. I’m nerding out on the implications of your work!

Maybe it was the sleep deprivation (both leading up to and during the event), but I walked away with a whole new mindset. I’ll never see anything the same way again. I look for the subtle sequencing behind it all, and wonder if I can encode it.

Woah

At this point, I plan to continue solving the build problem. Having NuPIC build easily across platforms is vital for widespread adoption. We need more minds on this project to extend and improve our understanding of this model of intelligence.

I’m also working on distributing model work load and selective evolution. I’ll save the details for posts as I build and work on these, but the bit “selective evolution” bears some explanation.

Selective evolution of models is the idea of running multiple model instances, with the same encoders tuned differently, being fed the same data. One chooses the model with the best predictive performance to continue forward.

I’d recommend anyone interested head into the #nupic channel on IRC and post to the mailing list. I can be found on IRC as @rava, and also on the mailing list. Also, here is my personal fork of NuPIC (it’s a mess in there).

Erik Blas
Google+

Comments on Reddit

Back to Blog