Skip to content

Commit

Permalink
param updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jan 8, 2025
1 parent 92bdc5a commit 20c1d3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sims/ra25/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type RunConfig struct {
PlusCycles int `default:"50"`

// CaBinCycles is the number of cycles per CaBin: how fine-grained the synaptic Ca is.
CaBinCycles int `default:"25"`
CaBinCycles int `default:"25"` // 25 > 10

// NZero is how many perfect, zero-error epochs before stopping a Run.
NZero int `default:"2"`
Expand Down
2 changes: 1 addition & 1 deletion sims/ra25/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var PathParams = axon.PathSheets{
pt.SWts.Init.SPct = 0.5 // .5 >= 1 here -- 0.5 more reliable, 1.0 faster..
pt.Learn.DWt.Trace.SetBool(true) // no trace is faster! requires lrate = 0.03
pt.Learn.DWt.SubMean = 0 // 1 > 0 for long run stability
pt.Learn.DWt.CaPScale = 1 // no evidence that < 1 is better
pt.Learn.DWt.CaPScale = 0.95 // 0.95 > 1
}},
{Sel: ".BackPath", Doc: "top-down back-pathways MUST have lower relative weight scale, otherwise network hallucinates",
Set: func(pt *axon.PathParams) {
Expand Down

0 comments on commit 20c1d3d

Please sign in to comment.