Skip to content

Commit

Permalink
Decrease lower bound on default intercept
Browse files Browse the repository at this point in the history
Since intercepts are applied after the encoders, it's only the upper
bound that needs to be less than one to avoid high gains. The lower
bound should go to -1.
  • Loading branch information
hunse committed Oct 15, 2018
1 parent da81bf0 commit d54169f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nengo_loihi/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ def set_defaults():
"""
nengo.Ensemble.max_rates.default = nengo.dists.Uniform(100, 120)
nengo.Ensemble.intercepts.default = nengo.dists.Uniform(-0.5, 0.5)
nengo.Ensemble.intercepts.default = nengo.dists.Uniform(-1.0, 0.5)

0 comments on commit d54169f

Please sign in to comment.