-
The following code fails
```python
import numpy as np
import nengo
y = np.fft.ifft(np.arange(5)).real
with nengo.Network() as model:
u = nengo.Node(y)
up = nengo.Probe(u)
with ne…
hunse updated
7 years ago
-
Here's my plan:
- Legend can be toggled via the plot context menu
- Default labels are just "1, 2, 3... etc"
- Editing labels can be done via modal dialogue and csv
- Unlike SpaSimilarity, no values w…
-
Using Nengo 2.3.1 the following will produce different results for `a` and `b` despite fixed seed:
```python
import nengo
import numpy as np
with nengo.Network(1) as model:
ens = nengo.Ense…
-
In my README.md, I have chains of code blocks inside of bullet points, e.g.,
- foo1
\`\`\`
bar1
\`\`\`
\`\`\`
bar2
\`\`\`
- foo2
\`\`\`
bar3
\`\`\`
\`\`\`…
-
I ran the Nengo test suite with Nengo v2.3.0 and Nengo OCL master and I get 11 failures, all something like this:
```
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ …
-
If the non-distribution encoders are provided to an EnsembleArray, there is a possibility that the following error will occur:
``` python
ValueError: n_neurons not yet initialized; cannot determine i…
xchoo updated
7 years ago
-
I ran two Python scripts at the same time and got the error (by chance):
```
Traceback (most recent call last):
File "c:\users\aaron\appdata\local\enthought\canopy\user\lib\site-packages\doit\a…
-
It would be nice if one could easily set the connection weight matrix of a connection (e.g., to all zero or small random weights) for some learning stuff.
Maybe this is already possible and I just do…
-
When I open `nengo_gui` via
``` python
import nengo_gui
nengo_gui.Viz(__file__).start()
```
it opens up the GUI fine, and the model loads properly. But then if I trigger a reload (e.g. by changing …
-
This is just a general wishlist item, but it would be nice if we could use the config system with SPA models (e.g., to set `neurons_per_dimension` for all `Buffers` at once). I don't think this would…