Skip to content

Instantly share code, notes, and snippets.

View windshield-rider's full-sized avatar

windshield-rider

  • United States
View GitHub Profile
@windshield-rider
windshield-rider / automobile.ipynb
Created October 21, 2018 05:10 — forked from martinwicke/automobile.ipynb
Estimator demo using Automobile dataset
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@windshield-rider
windshield-rider / alphabetic arithmetic task:ACT-R Model.lisp
Last active July 3, 2017 05:04
Speed-up with recall during alphabetic arithmetic task e.g. A + 2 = C : ACT-R Model
(defvar *trials*)
(defvar *results*)
(defvar *start-time*)
(defvar *block*)
(defvar *zbrodoff-control-data* '(1.84 2.46 2.82 1.21 1.45 1.42 1.14 1.21 1.17))
(defparameter *run-model* t)
@windshield-rider
windshield-rider / multicolumn addition:ACT-R Model.lisp
Last active July 3, 2017 05:04
Multicolumn Addition with Carryover : ACT-R Model
(clear-all)
(define-model tutor-model
(sgp :esc t :lf .05 :trace-detail high)
;; Add Chunk-types here
(chunk-type addition-fact addend1 addend2 sum)
(chunk-type add-pair one1 ten1 one2 ten2 ten-ans one-ans carry)