Skip to content
Discussion options

You must be logged in to vote

In the model you posted, the v_1 * cond will indeed modulate both drift rate and bound. However this model will probably cause errors because the bound can be negative (since b_0 and b_1 can be negative). If you constrain b_0 and b_1 to be greater than 0, or else set bound=lambda b_0,b_1,v_0, v_1, cond: np.maximum(.1, b_0 +b_1 * np.abs(v_1 * cond)) to ensure the bound is strictly positive, then it should work! (Though also, you don't need bound to be a function of v_0 since you don't use that anywhere in the bound equation.)

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@zaizibai
Comment options

@mwshinn
Comment options

@zaizibai
Comment options

@mwshinn
Comment options

Answer selected by zaizibai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants