Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ OrderedCollections = "1.4, 2"
Pkg = "1.4, 1.5"
ProgressMeter = "1"
Random = "1.11"
RecursiveArrayTools = "2, 3, 4"
RecursiveArrayTools = "3, 4"
SHA = "0.7, 1"
SparseArrays = "1.11"
StaticArrays = "1"
Expand Down
3 changes: 3 additions & 0 deletions src/entities/HomotopyDensity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ provided by AMP for features like pdf evaluation.
- When building a partial belief, use full points with necessary information in the specified partial coords.
- Replaces ManellicTree, ManifoldKernelDensity, KernelDensityEstimate, GaussianMixtureModel, PCA, Mixtures
- a.k.a. model order reduction given a topology selection

DevNotes:
- Missing field? When joint tree belief message over Bayes/junction tree separator, we still need to name the dimensions, (x1,x3, l5, ...)
"""
@kwdef struct HomotopyDensityDFG{T <: StateType, P}
"""reprkind allows for apples vs apples comparison between density representations. This allows for easy dispatch
Expand Down
10 changes: 5 additions & 5 deletions src/services/print.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ function printVariable(
println(ioc, " initialized: ", isInitialized(vert, :default))
println(ioc, " marginalized: ", isMarginalized(vert, :default))
println(ioc, " size bel. samples: ", size(vnd.belief.points))
bws = refBandwidths(vnd)
if !isempty(bws)
print(ioc, " kde bandwidths: ")
println(ioc, round.(first(bws); digits = 4))
end
# bws = refBandwidths(vnd)
# if !isempty(bws)
# print(ioc, " kde bandwidths: ")
# println(ioc, round.(first(bws); digits = 4))
# end
printstyled(ioc, " VNDs: "; bold = true)
println(ioc, solk[smsk], 4 < lsolk ? "..." : "")
end
Expand Down
Loading