Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/breakout/random_network_baseline.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -45,7 +45,7 @@
# Layers of neurons.
inpt = Input(shape=(1, 1, 1, 80, 80), traces=True) # Input layer
exc = LIFNodes(n=n_neurons, refrac=0, traces=True) # Excitatory layer
readout = LIFNodes(n=16, refrac=0, traces=True) # Readout layer
readout = LIFNodes(n=4, refrac=0, traces=True) # Readout layer
layers ={"X": inpt, "E": exc, "R": readout}

# Connections between layers.
Expand Down