Skip to content

Commit d88c854

Browse files
committed
readme updates
1 parent 79e931d commit d88c854

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

examples/deep_fsa/deep_fsa.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ func (ss *Sim) MakeToolbar(p *tree.Plan) {
748748
Tooltip: "Opens your browser on the README file that contains instructions for how to run this model.",
749749
Active: egui.ActiveAlways,
750750
Func: func() {
751-
core.TheApp.OpenURL("https://github.com/emer/leabra/blob/main/examples/ra25/README.md")
751+
core.TheApp.OpenURL("https://github.com/emer/leabra/blob/main/examples/deep_fsa/README.md")
752752
},
753753
})
754754
}

examples/hip_bench/diff/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ Below are comparisons between them:
3333
## 2 V.S. 4
3434
![](2vs4_diffs_1.png?raw=true "Diffs 1")
3535

36-
![](2vs4_diffs_2.png?raw=true "Diffs 2")
36+
![](2vs4_diffs_2.png?raw=true "Diffs 2")

examples/hip_bench/hip_bench.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2537,7 +2537,7 @@ func (ss *Sim) ConfigGUI() *core.Window {
25372537

25382538
tbar.AddAction(core.ActOpts{Label: "README", Icon: icons.FileMarkdown, Tooltip: "Opens your browser on the README file that contains instructions for how to run this model."}, win.This(),
25392539
func(recv, send tree.Node, sig int64, data interface{}) {
2540-
core.OpenURL("https://github.com/emer/leabra/blob/main/examples/ra25/README.md")
2540+
core.OpenURL("https://github.com/emer/leabra/blob/main/examples/hip_bench/README.md")
25412541
})
25422542

25432543
vp.UpdateEndNoSig(updt)

examples/hip_bench/testing_effect/hip_bench_te.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2956,7 +2956,7 @@ func (ss *Sim) ConfigGUI() *core.Window {
29562956

29572957
tbar.AddAction(core.ActOpts{Label: "README", Icon: icons.FileMarkdown, Tooltip: "Opens your browser on the README file that contains instructions for how to run this model."}, win.This(),
29582958
func(recv, send tree.Node, sig int64, data interface{}) {
2959-
core.OpenURL("https://github.com/emer/leabra/blob/main/examples/ra25/README.md")
2959+
core.OpenURL("https://github.com/emer/leabra/blob/main/examples/hip_bench/testing_effect/README.md")
29602960
})
29612961

29622962
vp.UpdateEndNoSig(updt)

examples/sir2/sir2.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ func (ss *Sim) NewRun() {
562562
ctx.Reset()
563563
ctx.Mode = etime.Train
564564
ss.Net.InitWeights()
565-
ss.InitStats()
565+
ss.StatsInit()
566566
ss.StatCounters()
567567
ss.Logs.ResetLog(etime.Train, etime.Epoch)
568568
ss.Logs.ResetLog(etime.Test, etime.Epoch)
@@ -578,9 +578,9 @@ func (ss *Sim) TestAll() {
578578
////////////////////////////////////////////////////////////////////////
579579
// Stats
580580

581-
// InitStats initializes all the statistics.
581+
// StatsInit initializes all the statistics.
582582
// called at start of new run
583-
func (ss *Sim) InitStats() {
583+
func (ss *Sim) StatsInit() {
584584
ss.Stats.SetFloat("SSE", 0.0)
585585
ss.Stats.SetFloat("DA", 0.0)
586586
ss.Stats.SetFloat("AbsDA", 0.0)

0 commit comments

Comments
 (0)