Skip to content

Commit f0713d7

Browse files
committed
Introducing Response Time Modeling (#361)
Summary: Pull Request resolved: #361 Implements https://arxiv.org/abs/2306.06296 (Response Time Improves Choice Prediction and Function Estimation for Gaussian Process Models of Perception and Preferences, UAI 2024). Code to make figures etc in the paper will be available at https://github.com/facebookresearch/response-time-gps. Differential Revision: D59561138
1 parent 683ad8a commit f0713d7

File tree

8 files changed

+1289
-0
lines changed

8 files changed

+1289
-0
lines changed

aepsych/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
from . import acquisition, config, factory, generators, models, strategy, utils
1313
from .config import Config
14+
from .distributions import RTDistWithUniformLapseRate, LogNormalDDMDistribution, ShiftedGammaDDMDistribution, ShiftedInverseGammaDDMDistribution, ShiftedLogNormalDDMDistribution
1415
from .likelihoods import BernoulliObjectiveLikelihood
1516
from .models import GPClassificationModel
1617
from .strategy import SequentialStrategy, Strategy
@@ -31,6 +32,11 @@
3132
"BernoulliObjectiveLikelihood",
3233
"BernoulliLikelihood",
3334
"GaussianLikelihood",
35+
"RTDistWithUniformLapseRate",
36+
"LogNormalDDMDistribution",
37+
"ShiftedGammaDDMDistribution",
38+
"ShiftedInverseGammaDDMDistribution",
39+
"ShiftedLogNormalDDMDistribution",
3440
]
3541

3642
try:

0 commit comments

Comments
 (0)