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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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:
(p harvest-first-item =goal> isa recall-list element first group =group =retrieval> isa item name =name ==> =goal> element second +retrieval> isa item group =group position second :recently-retrieved nil !eval! ("grouped-response" =name)):recently-retrieved nilis 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 theretrievalbuffer:mp-valueandrt-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_testsand it seems likerecently_retrieved Falseis the only one handled.These do not seem to be supported in ccm.
Beta Was this translation helpful? Give feedback.
All reactions