|
4 | 4 | A model type for simulating Multi-attribute Decision Field Theory (MDFT) as an Stochastic Differential Equation (SDE). |
5 | 5 | |
6 | 6 | # Parameters |
7 | | -- `σ = 1.0`: diffusion noise |
8 | | -- `α = 15.0`: evidence threshold |
9 | | -- `τ = .30`: non-decision time |
10 | | -- `γ::T`: scales the valance, `CMW`, functioning like a drift rate |
| 7 | +- `σ::T = 1.0`: diffusion noise. σ ∈ ℝ⁺. |
| 8 | +- `α::T = 15.0`: evidence threshold. α ∈ ℝ⁺. |
| 9 | +- `τ::T = .30`: non-decision time. τ ∈ [0, min_rt]. |
| 10 | +- `γ::T`: scales the valance, `CMW`, functioning like a drift rate. γ ∈ ℝ⁺. |
11 | 11 | - `κ::Vector{T}`: exponential rate parameters for switching attention between attributes. Currently, limited to two |
12 | | - attributes |
13 | | -- `ϕ1`: controls the sensitivity of lateral inhibition to distance in the distance function for creating the feedback matrix, `S` |
14 | | -- `ϕ2`: controls evidence decay and maximum inhibition in the distance function for creating the feedback matrix, `S` |
15 | | -- `β`: controls the weight of the dominance dimension in the feedback matrix distance function. If `β` < 0, the indifference dimension |
| 12 | + attributes. κ ∈ ℝ⁺. |
| 13 | +- `ϕ1::T`: controls the sensitivity of lateral inhibition to distance in the distance function for creating the feedback matrix, `S`. ϕ1 ∈ ℝ⁺. |
| 14 | +- `ϕ2::T`: controls evidence decay and maximum inhibition in the distance function for creating the feedback matrix, `S`. ϕ2 ∈ ℝ⁺. |
| 15 | +- `β::T`: controls the weight of the dominance dimension in the feedback matrix distance function. If `β` < 0, the indifference dimension |
16 | 16 | recieves more where. If `β` > 0, the dominance dimension recieves more weight |
17 | 17 | - `S::Array{T, 2}`: feedback matrix allowing self-connections and interconnections between alternatives. Self-connections range from zero to 1, where s_ij < 1 represents decay. Interconnections |
18 | 18 | between options i and j where i ≠ j are inhibitory if s_ij < 0. |
|
0 commit comments