| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Nengo

Page history last edited by Jim Davies 7 years, 11 months ago

Nengo

Nengo is an implementation of the Neural Engineering Framework of Chris Eliasmith. 

 

Installing Nengo

Download anaconda

Download git

open acaconda prompt

pip install nengo

 

 

Get latest version of Code

For the first time:

     Navigate to the directory you want the code in. 

Open a command prompt, 

type git clone https://github.com/science-of-imagination/nengo-buffer.git

(you'll need to right click to paste)

 

 

To update,

type "git pull" in command prompt from relevant folder.

 

 

 

Running

 

 

Windows button

Anaconda folder, Anaconda prompt

type jupyter notebook

navigate to the folder with the code.

click a program

it will open a new tab with code

menu: Cell: run (all)

 

 

Ensembles

Groups of neurons. They represent things, such as where you want to move your hand to, or a sound, or something like that.

The thing that is being represented is a vector. (a undimensional array of numbers)

Separately from that description are the 100 or so individual neurons relate to the thing it represents. 

Let's say we have an ensemble of 100 neurons, and we make an input of two numbers. 

Each neuron responds most strongly to some pair of numbers in the input (e.g., .5 and .02). Each neuron has a "receptive field," you might think.

 

 

Comments (0)

You don't have permission to comment on this page.