Skip to content

Commit

Permalink
update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Aug 22, 2024
1 parent 3af6e56 commit 290060a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ch3/faces/faces.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// face_categ: This project explores how sensory inputs
// faces: This project explores how sensory inputs
// (in this case simple cartoon faces) can be categorized
// in multiple different ways, to extract the relevant information
// and collapse across the irrelevant.
Expand Down Expand Up @@ -136,7 +136,7 @@ type Sim struct {
// New creates new blank elements and initializes defaults
func (ss *Sim) New() {
ss.Defaults()
ss.Net = leabra.NewNetwork("FaceCateg")
ss.Net = leabra.NewNetwork("Faces")
ss.Params.Config(ParamSets, "", "", ss.Net)
ss.Stats.Init()
ss.Patterns = &table.Table{}
Expand Down Expand Up @@ -557,8 +557,8 @@ func (ss *Sim) ConfigNetView(nv *netview.NetView) {

// ConfigGUI configures the Cogent Core GUI interface for this simulation.
func (ss *Sim) ConfigGUI() {
title := "Face categ"
ss.GUI.MakeBody(ss, "face categ", title, `This project explores how sensory inputs (in this case simple cartoon faces) can be categorized in multiple different ways, to extract the relevant information and collapse across the irrelevant. It allows you to explore both bottom-up processing from face image to categories, and top-down processing from category values to face images (imagery), including the ability to dynamically iterate both bottom-up and top-down to cleanup partial inputs (partially occluded face images). See <a href="https://github.com/CompCogNeuro/sims/blob/main/ch3/face_categ/README.md">README.md on GitHub</a>.</p>`)
title := "Faces"
ss.GUI.MakeBody(ss, "faces", title, `This project explores how sensory inputs (in this case simple cartoon faces) can be categorized in multiple different ways, to extract the relevant information and collapse across the irrelevant. It allows you to explore both bottom-up processing from face image to categories, and top-down processing from category values to face images (imagery), including the ability to dynamically iterate both bottom-up and top-down to cleanup partial inputs (partially occluded face images). See <a href="https://github.com/CompCogNeuro/sims/blob/main/ch3/faces/README.md">README.md on GitHub</a>.</p>`)
ss.GUI.CycleUpdateInterval = 10

nv := ss.GUI.AddNetView("Network")
Expand Down Expand Up @@ -647,7 +647,7 @@ func (ss *Sim) ConfigGUI() {
Tooltip: "Opens your browser on the README file that contains instructions for how to run this model.",
Active: egui.ActiveAlways,
Func: func() {
core.TheApp.OpenURL("https://github.com/CompCogNeuro/sims/blob/main/ch3/face_categ/README.md")
core.TheApp.OpenURL("https://github.com/CompCogNeuro/sims/blob/main/ch3/faces/README.md")
},
})
})
Expand Down

0 comments on commit 290060a

Please sign in to comment.