Skip to content

Commit

Permalink
Merge pull request #489 from het-25/patch-1
Browse files Browse the repository at this point in the history
Update random_network_baseline.py
  • Loading branch information
Hananel-Hazan committed Jun 4, 2021
2 parents 97b5350 + 7155dbd commit e47ae91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/breakout/random_network_baseline.py
Original file line number Diff line number Diff 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

0 comments on commit e47ae91

Please sign in to comment.