Eric Hunsberger

Results 99 comments of Eric Hunsberger

There is an `NxNet` interface as part of NxSDK, which essentially is supposed to be an allocator (you create compartments generically, then they have a "compiler" that figures out how...

When we do get this, we should be able to have both learning and non-learning neurons on the same core. We have an assert associated in `build_core` that all learning...

Since we quantize everything when putting it on Loihi, it's not unlikely for some neurons to end up with exactly the same parameters, and thus be redundant. I've seen this...

The quantification I'm looking for is regarding neurons with the same parameters. If by 200-300 neurons, most new neurons generated have the exact same parameters as an existing neuron in...

Hi Taejeong, Unfortunately, there's no workaround for `block_shape` in nengo-loihi 0.10.0. You'll have to use the development version of NengoLoihi. `master` branch should work with Nengo 3.0.0 and NxSDK

My guess is that disconnecting from and reconnecting to the board might do what we need in terms of resetting the board state, but we should check this.

Yeah, that error definitely shouldn't happen. Even so, I'm not sure if your script would do what you want. `x_hat` is a Node, and since you probe it, it can't...

Just a guess, but could be because the synaptic filter on the recurrent connection isn't being applied. This may be fixed by one of the PRs in the queue. I'll...

It turns out the synaptic filter isn't the problem. It could be that using both weights and encoders causes one or the other to not get scaled well, but I...

This is mostly fixed by #124. Now, you get something like this when running the script at the top. (I did make two changes to the script. One is to...