Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove old benchmarks, update readme #68

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,25 @@
[![](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)
```
72 changes: 0 additions & 72 deletions test/benchmarks.jl

This file was deleted.

Loading