Handling request parameters? #232
asmaloney
started this conversation in
Frameworks (ccm, pyactr, vanilla)
Replies: 1 comment
-
Valid values are Only vanilla works with all values. pyactr only supports All the plumbing is in place to handle any other buffer request parameters in the future. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In Lisp ACT-R, one can add parameters to send to modules to give them extra information. An example from the u5/grouped_model.lisp:
:recently-retrieved nil
is a request to the buffer to check if the item has been retrieved recently or not. There are two other parameters which are supposed to be available on theretrieval
buffer:mp-value
andrt-value
(pp. 305-306)In pyactr, they handle it their own way by adding a buffer query which seems to be a departure from vanilla ACT-R (i.e. not allowed by it). This translates to:
These are called
extra_tests
and it seems likerecently_retrieved False
is the only one handled.These do not seem to be supported in ccm.
Beta Was this translation helpful? Give feedback.
All reactions