-
Notifications
You must be signed in to change notification settings - Fork 5
Model Wishlist #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
rtdists seems to implement LBA with varying drift SDs. Is this a feature that we could add? |
Yeah. I pushed a new release which uses a vector for the drift SDs. The default is a vector of ones. |
I suspect the same could be done for LNR, but I don't know if that's common |
I was wondering the same thing myself. I need to verify its identifiable when the SDs differ. I believe it is. |
Also, to add to the wishlist above: multiple-threshold log-normal race (MTLNR): Reynolds et al. (2020) :) |
|
I am also interested in the time varying shifted wald. Let me read that paper this weekend and give a shot at the translation. |
Sounds good. I will take a look at the Generalised exponential-Gaussian model. I updated the model list accordingly. |
I decided against adding the generalized Ex-Gaussian because it does not appear to be theoretically motivated. I added the Ex-Gaussian instead. The psychological interpretation of the Ex-Gaussian is dubious too, but I added it because it was simple and it has a historical role in RT modeling. |
Yes, totally agree, very cool!
Out of curiosity, can you elaborate a bit on your thoughts? |
I did not go through the papers in fine detail, but my tentative impression is that the validity of the ex-gaussian distribution has not been strongly established, and the new shape parameter of the generalized ex-gaussian model has no psychological interpretation. If the I recommend checking out the paper below. The authors show through simulation and experimentation that the ex-Gaussian parameters do not change selectively with experimental manipulations (or varying DDM parameters). In many cases, all parameters respond to the manipulations, which seems to imply they do not map onto cognitive processes in a clear fashion if at all. Matzke, D., & Wagenmakers, E. J. (2009). Psychological interpretation of the ex-Gaussian and shifted Wald parameters: A diffusion model analysis. Psychonomic bulletin & review, 16, 798-817. |
After reviewing the specific paper you mentioned, @DominiqueMakowski, it appears to primarily focus on exploiting a particular aspect of the Wald distribution's relationship with another distribution (e.g., ex-Gaussian). This approach is employed to facilitate on-the-fly computation of the posterior through conjugacy. Such trial-varying estimation permits variation in parameters across different trials. Initially, however, I had the impression that you were interested in exploring dynamics within trials, such as fluctuations in drift in the ADDM model, for example. If our focus remains on the former aspect, I believe only minor adjustments (if any) are necessary for the current Wald implementation. Subsequently, it would simply be a matter of demonstrating the procedure as an example of how trial-varying estimation could be implemented in Julia. However, this seems more like an illustrative application rather than the development of an entirely new model for the package. What are your guys thoughts on this? |
I only gave the paper a cursory read, but arrived at a similar conclusion and wanted to wait for your evaluation. There is no need to create a new model type because the Wald is applied to a moving window of data. In my opinion, the biggest innovation was deriving a conjugate prior, which is difficult except in very simple cases. I think it would be sufficient to add an example to the parameter estimation examples in the docs showing how to use the conjugate prior without the moving window of data. The only thing that was a bit unclear to me was how non-decision time was treated. |
👍 |
Sorry to just add stuff on this thread while being totally useless regarding their assessment and implementation ^^ Unless I'm mistaken, most models can currently already be used for one-choice paradigms (e.g., LBA or LNR with one accumulator; + all the one-choice specific models like exgaussian and Wald). Most but the DDM, currently (?). This paper apparently shows that it's doable, but I didn't find many details regarding the implementation. Is that something that we could support? |
@DominiqueMakowski, I think these ideas are all worthy of discussion and are not necessarily useless. Conjugate priors are quite convenient and have practical utility. So I think that is worth mentioning it in the parameter estimation section. I think the single choice DDM is something that we could support. Note that it does not have a known PDF and the drift rate mean and SD are not identifiable. One alternative that I would suggest is the WaldMixture, which is similar except it assumes non-decision time is a constant rather than a random variable. The WaldMixture has a known PDF and the mean and SD drift rates are identifiable. If you are interested in false starts (premature responses), the paper below extends the 1 choice DDM to such situations. It has the same issues, but it models the pre-stimulus decision process. Walsh, M. M., Gunzelmann, G., & Van Dongen, H. P. (2017). Computational cognitive modeling of the temporal dynamics of fatigue from sleep loss. Psychonomic bulletin & review, 24, 1785-1807. |
However, in the future, it might be useful to have more examples in the documentation where we show how to implement these published SSM applications with Julia |
@DominiqueMakowski, thanks for the suggestions. I'll try to find time to read the paper for the RDEX in more detail. After a cursory read, it looks like it is applied to the Go, No-Go task where the racing diffusion is used for go responses and the ex-Gaussian is used for no go responses. I'm not sure exactly why this mixture is used, but that will probably become clearer once I read the paper more thoroughly. I can add a page to the document that explains how to extend the API for new models. I think that is a good idea. |
Circling back to the time varying idea, I was exploring simulations for a model that captures the concept of certain sources of information coming "online" at different time points. This has been discussed in several applied cases where the drift considered multiple attributes, weighting their importance and changing their latency relative to one another (in the two-attribute case). These are either called starting time DDM (stDDM) or multi-attribute, time-dependent DDM (mtDDM). I put together a simulator for this idea since it is rampant in the literature. Here is a link to the PR: #59 Here are some citations of use cases:
|
-Nonparametric-bound Drift-Diffusion Model (npb-DDM): Seems similar to the time-collapsing-boundaries models -https://www.researchgate.net/publication/377858197_Incorporation_of_a_cost_of_deliberation_time_in_perceptual_decision_making) |
The LCA is conceptually similar. I am not sure how or whether they might differ. A while back I started an implemention of the OUM, but I was unsure whether it was correct. I will look through the article to see whether I can get some clues. |
The models are indeed related. I think they involve differences in feedforward inhibition ( Based on the studies by Bogacz et al. (2006) and Busemeyer & Townsend (1993): evidence for alternative with LCA more like: Bogacz, R., Brown, E., Moehlis, J., Holmes, P., & Cohen, J. D. (2006). The physics of optimal decision making: a formal analysis of models of performance in two-alternative forced-choice tasks. Psychological Review, 113(4), 700. Busemeyer, J. R., & Townsend, J. T. (1993). Decision field theory: a dynamic-cognitive approach to decision making in an uncertain environment. Psychological Review, 100(3), 432. |
Just stumbled on the Autocorrelated Bayesian Sampler (ABS) model, which appears like a "one model to rule them all" kind of model Quite an interesting paper, reframing the role of time in cognitive models. |
Thanks for sharing. Its been a while since I read that article. I agree that they are interesting ideas. One thing I remember is that some of the model fits were not very good, which is difficult to interpret without understanding to what extend core and auxilary assumptions are driving the predictions. In either case, I do appreciate the effort to broaden the scope of theory. |
Sequential sampling without comparison to boundary through model-free reinforcement learning
Note: I found particularly interesting the bit on urgency signal (page 31 in the supplementary materials). We don't have any models currently implemented that have something like that right? |
I think it would be reasonable to add a model with an urgancy signal, especially if the physiological evidence is compelling. One reason I have not added such a model is that it was unclear to me whether it was better supported than standard alternatives. These different mechanisms are challenging to distinguish with choice-RT data alone, and might not be possible once auxiliary assumptions are removed (see Jones & Dzhafarov, 2014). |
|
Good finds. I gave the trial-varying Wald model paper a cursory read a few months ago. |
Was just wondering about the possibility of implementing models with time-varying boundaries (or collapsing boundaries). That said, it might make sense to not have that as a priority, given some of their critiques.
The text was updated successfully, but these errors were encountered: