Skip to content

Commit 99981ff

Browse files
committed
update to new lowercase compcogneuro org name
1 parent 85b6ef7 commit 99981ff

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
* `main` is the latest version based on [Cogent Lab](https://github.com/cogentcore/lab), used by [axon](https://github.com/emer/axon), and is still undergoing significant development.
1111

12-
* `leabra` is an awkward in-between version that works with the current [leabra](https://github.com/emer/leabra) and [Computational Cognitive Neuroscience](https://github.com/CompCogNeuro/sims) simulations, which had to be updated for teaching in Fall 2024, so the simulations could run on the web browser.
12+
* `leabra` is an awkward in-between version that works with the current [leabra](https://github.com/emer/leabra) and [Computational Cognitive Neuroscience](https://github.com/compcogneuro/sims) simulations, which had to be updated for teaching in Fall 2024, so the simulations could run on the web browser.
1313

1414
* `v1` is the version that works with the old v1 versions of leabra, using the old [goki](https://github.com/goki/gi) GUI framework.
1515

16-
The *emergent* neural network simulation framework provides a toolkit in the Go programming language (golang) for developing neural network models across multiple levels of complexity, from biologically-detailed spiking networks in the [axon](https://github.com/emer/axon) package, to PyTorch abstract deep networks in the [eTorch](https://github.com/emer/etorch) package. It builds on the [Cogent Core](https://cogentcore.org/core) GUI framework and [Cogent Lab](https://github.com/cogentcore/lab) to provide dynamic graphical interfaces for visualizing and manipulating networks and data, making the models uniquely accessible for teaching (e.g., see the [Computational Cognitive Neuroscience](https://github.com/CompCogNeuro/sims) simulations) and supporting the development of complex dynamical models for research.
16+
The *emergent* neural network simulation framework provides a toolkit in the Go programming language (golang) for developing neural network models across multiple levels of complexity, from biologically-detailed spiking networks in the [axon](https://github.com/emer/axon) package, to PyTorch abstract deep networks in the [eTorch](https://github.com/emer/etorch) package. It builds on the [Cogent Core](https://cogentcore.org/core) GUI framework and [Cogent Lab](https://github.com/cogentcore/lab) to provide dynamic graphical interfaces for visualizing and manipulating networks and data, making the models uniquely accessible for teaching (e.g., see the [Computational Cognitive Neuroscience](https://github.com/compcogneuro/sims) simulations) and supporting the development of complex dynamical models for research.
1717

1818
See [cogent core install](https://www.cogentcore.org/core/setup/install) instructions for general installation instructions. The [emergent wiki install](https://github.com/emer/emergent/wiki/Install) page has a tutorial for how to create your own simulation based on the leabra ra25 example.
1919

@@ -23,19 +23,19 @@ The single clearest motivation for using Go vs. the ubiquitous Python, is that P
2323

2424
Furthermore, the _Go shader language_ [gosl](https://github.com/cogentcore/lab/tree/main/gosl) in Cogent Lab enables Go to run efficiently on the GPU as well, enabling the same code base to be used for both CPU and GPU execution. This enables even very complex, biologically-detailed models as in the [axon](https://github.com/emer/axon) framework to take full advantage of GPU acceleration, resulting in 10x or more speedup factors over CPU.
2525

26-
See the [ra25 example](https://github.com/emer/axon/tree/main/ra25/README.md) in the [axon](https://github.com/emer/axon) package for a complete working example (intended to be a good starting point for creating your own models), and any of the 26 models in the [Comp Cog Neuro sims](https://github.com/CompCogNeuro/sims) repository which also provide good starting points, using the [leabra](https://github.com/emer/leabra) framework.
26+
See the [ra25 example](https://github.com/emer/axon/tree/main/ra25/README.md) in the [axon](https://github.com/emer/axon) package for a complete working example (intended to be a good starting point for creating your own models), and any of the 26 models in the [Comp Cog Neuro sims](https://github.com/compcogneuro/sims) repository which also provide good starting points, using the [leabra](https://github.com/emer/leabra) framework.
2727

2828
# Current Status / News
2929

3030
* December 2024: Updated to [Cogent Lab](https://github.com/cogentcore/lab) and tracking ongoing development there. In general much of the prior functionality in emergent has / will migrate to Lab.
3131

32-
* June 2024: Major changes ongoing in coordination with the [Cogent Core](https://cogentcore.org/core) framework development over the prior year, replacing the previous [GoKi](https://github.com/goki) GUI framework. Many packages have migrated to Cogent Core, which is a much cleaner major rewrite, which should be stable and released in beta status soon. [axon](https://github.com/emer/axon) is staying updated but everything else should use the [v1](https://github.com/emer/emergent/tree/v1) branch. [Leabra](https://github.com/emer/leabra) and [Comp Cog Neuro sims](https://github.com/CompCogNeuro/sims) will be updated after the dust settles, hopefully in time for Fall 2024 classes.
32+
* June 2024: Major changes ongoing in coordination with the [Cogent Core](https://cogentcore.org/core) framework development over the prior year, replacing the previous [GoKi](https://github.com/goki) GUI framework. Many packages have migrated to Cogent Core, which is a much cleaner major rewrite, which should be stable and released in beta status soon. [axon](https://github.com/emer/axon) is staying updated but everything else should use the [v1](https://github.com/emer/emergent/tree/v1) branch. [Leabra](https://github.com/emer/leabra) and [Comp Cog Neuro sims](https://github.com/compcogneuro/sims) will be updated after the dust settles, hopefully in time for Fall 2024 classes.
3333

3434
* Nov 2020: Full Python conversions of CCN sims complete, and [eTorch](https://github.com/emer/etorch) for viewing and interacting with PyTorch models.
3535

3636
* April 2020: Version 1.0 of GoGi GUI is now released, and we have updated all module dependencies accordingly. *We now recommend using the go modules instead of GOPATH* -- the [Wiki Install](https://github.com/emer/emergent/wiki/Install) instructions have been updated accordingly.
3737

38-
* 12/30/2019: Version 1.0.0 released! The [Comp Cog Neuro sims](https://github.com/CompCogNeuro/sims) that accompany the [CCN Textbook](https://github.com/CompCogNeuro/book) are now complete and have driven extensive testing and bugfixing.
38+
* 12/30/2019: Version 1.0.0 released! The [Comp Cog Neuro sims](https://github.com/compcogneuro/sims) that accompany the [CCN Textbook](https://github.com/compcogneuro/book) are now complete and have driven extensive testing and bugfixing.
3939

4040
* 3/2019: Python interface is up and running! See the `python` directory in `leabra` for the [README](https://github.com/emer/leabra/blob/main/python/README.md) status and how to give it a try. You can run the full `leabra/examples/ra25` code using Python, including the GUI etc.
4141

actrf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ This results in a nice standard RF plot that can be visualized in a tensor grid
88

99
There is a standard ActRF which is cumulative over a user-defined interval and a RunningAvg version which is computed online and continuously updated but is more susceptible to sampling bias (i.e., more sampled areas are more active in general), and a recency bias.
1010

11-
See [objrec CCN sim](https://github.com/CompCogNeuro/sims/blob/main/ch6/objrec) for example usage.
11+
See [objrec CCN sim](https://github.com/compcogneuro/sims/blob/main/ch6/objrec) for example usage.
1212

esg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ Conventional modifiers, used for defining sub-rules:
7878
* L = Location
7979
* R = Adverb
8080

81-
See [testdata/testrules.txt](https://github.com/emer/emergent/blob/main/esg/testdata/testrules.txt) and [sg CCN sim](https://github.com/CompCogNeuro/sims/blob/main/ch9/sg) for example usage.
81+
See [testdata/testrules.txt](https://github.com/emer/emergent/blob/main/esg/testdata/testrules.txt) and [sg CCN sim](https://github.com/compcogneuro/sims/blob/main/ch9/sg) for example usage.
8282

0 commit comments

Comments
 (0)