HDDM is a python module that implements Hierarchical Bayesian estimation of Drift Diffusion Models.
Project description
- Date:
- October 29, 2012
- Contact:
- thomas_wiecki@brown.edu, imri_sofer@brown.edu, michael_frank@brown.edu
- Web site:
- Github:
- Mailing list:
- Copyright:
- This document has been placed in the public domain.
- License:
HDDM is released under the BSD 2 license.
- Version:
- 0.4.1
Purpose
HDDM is a python toolbox for hierarchical Bayesian parameter estimation of the Drift Diffusion Model (via PyMC). Drift Diffusion Models are used widely in psychology and cognitive neuroscience to study decision making.
Features
Uses hierarchical Bayesian estimation (via PyMC) of DDM parameters to allow simultaneous estimation of subject and group parameters, where individual subjects are assumed to be drawn from a group distribution. HDDM should thus produce better estimates when less RT values are measured compared to other methods using maximum likelihood for individual subjects (i.e. DMAT or fast-dm).
Heavily optimized likelihood functions for speed (Navarro & Fuss, 2009).
Flexible creation of complex models tailored to specific hypotheses (e.g. estimation of separate drift-rates for different task conditions; or predicted changes in model parameters as a function of other indicators like brain activity).
Easy specification of models via configuration file fosters exchange of models and research results.
Built-in Bayesian hypothesis testing and several convergence and goodness-of-fit diagnostics.
Usage
Command line
The easiest way to use HDDM is by creating a configuration file for your model:
example.conf
[depends] v = difficulty
Then call hddm_fit.py:
hddm_fit.py --samples 10000 --burn 5000 example.conf mydata.csv
Python
Of course, you can also use HDDM directly from within Python:
import hddm # Load data from csv file into a NumPy structured array data = hddm.load_csv('simple_difficulty.csv') # Create a HDDM model multi object model = hddm.HDDM(data, depends_on={'v':'difficulty'}) # Create model and start MCMC sampling model.sample(10000, burn=5000) # Print fitted parameters and other model statistics model.print_stats() # Plot posterior distributions and theoretical RT distributions model.plot_posteriors(save=True) model.plot_posterior_predictive(save=True)
Installing
Windows
The easiest way is to download and install the Enthought Python Distribution (EPD) which is free for academic use. An untested alternative is the Python(x,y) distribution. Please let us know your experiences if you test this option.
We recommend using pip to download and install HDDM. The easiest way to install pip is via easy_install. Start the windows command shell (cmd.exe) and type
easy_install pip
Then install kabuki and HDDM:
pip install kabuki pip install hddm
Linux (Debian based, such as Ubuntu)
Most of HDDM’s dependencies are available from your repository, you can install them by typing
apt-get install python python-dev python-numpy python-scipy python-matplotlib cython python-pip gfortran liblapack-dev
which requires sudo rights.
Optional dependencies for hddm_demo.py can be installed via
apt-get install python-wxgtk2.8 python-traitsui
Then install kabuki and HDDM:
sudo pip install kabuki sudo pip install hddm
OSX
We recommend installing the SciPy Superpack maintained by Chris Fonnesbeck.
The Superpack requires you to install XCode which apparently does not bundle with gcc anymore (which is required by HDDM). This repository provides some appropriate installers:
https://github.com/kennethreitz/osx-gcc-installer/downloads
Then install kabuki and HDDM:
- ::
sudo pip install kabuki sudo pip install hddm
How to cite
If HDDM was used in your research, please cite the following:
Wiecki, T. V., Sofer, I. and Frank, M. J. at the 44th annual meeting of the Society for Mathematical Psychology, 65, 2011
Getting started
Check out the tutorial on how to get started. Further information can be found in howto and the documentation.
Join our low-traffic mailing list.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file HDDM-0.4.1.tar.gz
.
File metadata
- Download URL: HDDM-0.4.1.tar.gz
- Upload date:
- Size: 431.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ba11eb3bd3b36c05d2a1896b43e785faf5149764b46b726420fa011d29d5bdb |
|
MD5 | 118ab7ed418b6fd52ba1a0b413bedfb1 |
|
BLAKE2b-256 | 86dc1030c43d67238bd8ffcdd84ac92974de48813486022402b59cdf166cb0ff |