├── .gitignore ├── LICENSE ├── README.md ├── core ├── hebbRNN_create_model.m ├── hebbRNN_learn_model.m └── hebbRNN_run_model.m ├── examples ├── hebbRNN_Example_CO.m ├── hebbRNN_Example_DNMS.m └── utils │ ├── filledCircle.m │ └── hebbRNN_COTargetFun.m └── paper ├── paper.bib ├── paper.json └── paper.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/README.md -------------------------------------------------------------------------------- /core/hebbRNN_create_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/core/hebbRNN_create_model.m -------------------------------------------------------------------------------- /core/hebbRNN_learn_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/core/hebbRNN_learn_model.m -------------------------------------------------------------------------------- /core/hebbRNN_run_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/core/hebbRNN_run_model.m -------------------------------------------------------------------------------- /examples/hebbRNN_Example_CO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/examples/hebbRNN_Example_CO.m -------------------------------------------------------------------------------- /examples/hebbRNN_Example_DNMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/examples/hebbRNN_Example_DNMS.m -------------------------------------------------------------------------------- /examples/utils/filledCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/examples/utils/filledCircle.m -------------------------------------------------------------------------------- /examples/utils/hebbRNN_COTargetFun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/examples/utils/hebbRNN_COTargetFun.m -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/paper/paper.json -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanAMichaels/hebbRNN/HEAD/paper/paper.md --------------------------------------------------------------------------------