Skip to content

Commit

Permalink
update field tags for all sims, to avoid scrolling and use new-window…
Browse files Browse the repository at this point in the history
…:"+"
  • Loading branch information
rcoreilly committed Aug 21, 2024
1 parent 5dd49a0 commit e894f3b
Show file tree
Hide file tree
Showing 25 changed files with 174 additions and 174 deletions.
4 changes: 2 additions & 2 deletions examples/attn_trn/attn.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ type Sim struct {
KNaAdapt bool `default:"true"`
// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`
//
Path3x3Skp1 *paths.PoolTile `display:"Standard same-to-same size topographic pathway"`
Expand All @@ -247,7 +247,7 @@ type Sim struct {
TestEnv AttnEnv
// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`
// whether to update the network view while running
ViewOn bool
Expand Down
2 changes: 1 addition & 1 deletion examples/choose/armaze/maze.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type Env struct {
Di int `edit:"-"`

// configuration parameters
Config Config
Config Config `new-window:"+"`

// current drive strength for each of Config.NDrives in normalized
// 0-1 units of each drive (beyond built-in curiosity drive)
Expand Down
18 changes: 9 additions & 9 deletions examples/choose/choose.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ var (
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// if true, stop running at end of a sequence (for NetView Di data parallel index)
StopOnSeq bool
Expand All @@ -83,25 +83,25 @@ type Sim struct {
StopOnErr bool

// network parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
18 changes: 9 additions & 9 deletions examples/deep_fsa/deep_fsa.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,31 +54,31 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// all parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
18 changes: 9 additions & 9 deletions examples/deep_move/deep_move.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,31 +54,31 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// all parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
18 changes: 9 additions & 9 deletions examples/deep_music/deep_music.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,31 +55,31 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// all parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
2 changes: 1 addition & 1 deletion examples/dls/armaze/maze.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type Env struct {
Di int `edit:"-"`

// configuration parameters
Config Config
Config Config `new-window:"+"`

// current drive strength for each of Config.NDrives in normalized 0-1 units of each drive: 0 = first sim drive, not curiosity
Drives []float32
Expand Down
18 changes: 9 additions & 9 deletions examples/dls/dls.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ func main() {
type Sim struct {
// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`
// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`
// if true, stop running at end of a sequence (for NetView Di data parallel index)
StopOnSeq bool
Expand All @@ -81,25 +81,25 @@ type Sim struct {
StopOnErr bool
// network parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`
// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`
// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`
// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`
// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`
// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`
// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`
// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
18 changes: 9 additions & 9 deletions examples/hip/hip.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,22 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// all parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// if true, run in pretrain mode
PretrainMode bool
Expand Down Expand Up @@ -110,13 +110,13 @@ type Sim struct {
TestABAC *table.Table `display:"no-inline"`

// Environments
Envs env.Envs `display:"no-inline"`
Envs env.Envs `new-window:"+" display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
16 changes: 8 additions & 8 deletions examples/inhib/inhib.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,31 +59,31 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// the network -- click to view / edit parameters for layers, paths, etc
Net *axon.Network `display:"no-inline"`
Net *axon.Network `new-window:"+" display:"no-inline"`

// all parameter management
Params emer.NetParams `display:"inline"`
Params emer.NetParams `display:"add-fields"`

// contains looper control loops for running sim
Loops *looper.Manager `display:"no-inline"`
Loops *looper.Manager `new-window:"+" display:"no-inline"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// Contains all the logs and information about the logs.'
Logs elog.Logs
Logs elog.Logs `new-window:"+"`

// the training patterns to use
Pats *table.Table `display:"no-inline"`

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// netview update parameters
ViewUpdate netview.ViewUpdate `display:"inline"`
ViewUpdate netview.ViewUpdate `display:"add-fields"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
8 changes: 4 additions & 4 deletions examples/kinaseq/sim.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func main() {
type Sim struct {

// simulation configuration parameters -- set by .toml config file and / or args
Config Config
Config Config `new-window:"+"`

// Kinase NeurCa params
NeurCa kinase.NeurCaParams
Expand All @@ -66,13 +66,13 @@ type Sim struct {
TrainData tensor.Float64

// axon timing parameters and state
Context axon.Context
Context axon.Context `new-window:"+"`

// contains computed statistic values
Stats estats.Stats
Stats estats.Stats `new-window:"+"`

// logging
Logs elog.Logs `display:"no-inline"`
Logs elog.Logs `new-window:"+"`

// manages all the gui elements
GUI egui.GUI `display:"-"`
Expand Down
Loading

0 comments on commit e894f3b

Please sign in to comment.