;;;-*-LISP-*- ;;; =================================================================== ;;; ACT-R Sentence Parsing Model ;;; ;;; Copyright (C) 2006 Sven Bruessow, Shravan Vasishth, Rick Lewis ;;; ;;; This file is part of the ACT-R Sentence Parsing Model processing ;;; German negative and positive polarity items as described in the ;;; Cognitive Science article Vasishth, Bruessow & Lewis (2007). ;;; ;;; The original English model is described in the Cognitive Science ;;; article Lewis & Vasishth (2004). ;;; ;;; Version 2.9 ;;; July 15 2006 ;;; =================================================================== ;;; ;;; The model is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or ;;; (at your option) any later version. ;;; ;;; The model is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see . (setf *actr-enabled-p* t) (goal-focus top-goal) (pm-reset) (pm-set-visloc-default :attended new :screen-x lowest) (pm-set-params :show-focus nil :trace-modules t ) (sgp ; :esc t ; enable subsymbolic computation ;; added (sbr) :ga 1 ; goal activation :pm t ; partial matching ; :blc -0.3 ; base level constant (2 was used in Raluca's model) ; :blc 0 ; base level constant (2 was used in Raluca's :bll 0.5 ; turn decay on :ol nil ; use full learning rule, not approximation ;;; Activation noise settings ; :ans nil ; :ans .15 ; :ans .25 ; :ans .3 ; :ans .35 :ans .45 ; :rt -.5 ; retrieval threshold ; :rt -1.0 ; retrieval threshold :rt -1.5 ; retrieval threshold :md -.6 ; maximum difference penalty ; :ms 0 ; minimum difference penalty ; :mp 2 ; match scale ; :mas 3 ; maximum associative strength :mas 1.5 ; maximum associative strength ; :mas 0 ; maximum associative strength ; (3 was used in Sternberg model) ; :lf .52 ;latency factor ; :lf .50 ;latency factor ; :lf .46 ;latency factor ; :lf .26 ; latency factor ; :lf .25 ; latency factor :lf .14 ; latency factor ; (.45 was used in Raluca's model) :ct t ; cycle trace :lt nil ; latency trace :act nil ; activation trace :ot nil ; output trace :pt nil ; production trace :pct nil ; production compilation trace :pmt nil ; partial matching trace :dmt nil ; declarative memory trace :v t ; verbose )