Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsdfish/actrmodels.jl
A Julia Package for the ACT-R Cognitive Architecture
https://github.com/itsdfish/actrmodels.jl
act-r cognitive-architecture julia julia-language julialang
Last synced: about 1 month ago
JSON representation
A Julia Package for the ACT-R Cognitive Architecture
- Host: GitHub
- URL: https://github.com/itsdfish/actrmodels.jl
- Owner: itsdfish
- License: mit
- Created: 2020-04-16T11:43:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T23:06:15.000Z (8 months ago)
- Last Synced: 2024-04-25T20:01:19.257Z (7 months ago)
- Topics: act-r, cognitive-architecture, julia, julia-language, julialang
- Language: Julia
- Homepage:
- Size: 872 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ACTRModels
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://itsdfish.github.io/ACTRModels.jl/dev/)
The goal of ACTRModels.jl is to provide basic types and functions for developing models based on the [ACT-R](https://en.wikipedia.org/wiki/ACT-R) cognitive architecture. Please see the documentation for installation instructions, working examples, and related pacakges.
# Simple Example
```julia
using ACTRModels# create chunks of declarative knowledge
chunks = [
Chunk(; name = :Bob, department = :accounting),
Chunk(; name = :Alice, department = :HR)
]
# initialize declarative memory
declarative = Declarative(memory = chunks)# specify model parameters: partial matching, noise, mismatch penalty, activation noise
Θ = (mmp = true, noise = true, δ = 1.0, s = 0.20)# create an ACT-R object with activation noise and partial matching
actr = ACTR(; declarative, Θ...)# retrieve a chunk
chunk = retrieve(actr; department = :accounting)
```