You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Common kernel bandwith parameter used with ManifoldKernelDensity, and as legacy also stores covariance until a dedicated field is created for parametric case.
34
+
Common kernel bandwith parameter used with ManifoldKernelDensity, see field `covar` for the parametric covariance.
35
35
"""
36
36
bw::Matrix{Float64}=zeros(0,0)
37
37
"Parametric (Gaussian) covariance."
38
38
covar::Vector{SMatrix{N, N, Float64}}= SMatrix{getDimension(variableType), getDimension(variableType), Float64}[]
39
39
BayesNetOutVertIDs::Vector{Symbol}= Symbol[]
40
40
dimIDs::Vector{Int}= Int[] #TODO Likely deprecate
41
41
42
-
dims::Int=0
42
+
dims::Int=getDimension(variableType) #TODO should we deprecate in favor of N
43
43
"""
44
-
Flag used by junction (Bayes) tree construction algorith to know whether this variable has yet been included in the tree construction.
44
+
Flag used by junction (Bayes) tree construction algorithm to know whether this variable has yet been included in the tree construction.
0 commit comments