GraphicalModelLearning.jl
GraphicalModelLearning.jl copied to clipboard
Algorithms for Learning Graphical Models
Releases
v0.1.0 @JuliaRegistrator register()
@marc-vuffray has a proposal to eliminate common subexpressions to make the derivative computations much fasters.
At this line, https://github.com/lanl-ansi/GraphicalModelLearning.jl/blob/master/src/GraphicalModelLearning.jl#L230 I am getting this error message, ``` Currently must provide 2nd order derivatives of univariate functions. Try setting autodiff=true. ```
by default should these be presented as symmetric or upper triangular?
Instead of having `symmetrization` in the formulation flag, all learning methods can return a `DiHypergraph` then calling a `symmetrize` function could turn them into `FactorGraph`. Consistent return types helps the...
Ensure that Factor Graph are symeterized always, use `DiHypergraph` for the current asymetetic data structure.
Is Gibbs the correct name for the samplers that we have implemented? They look more like brute force enumeration to me.
For now we assume discrete models. `(something)` indicates that `something` is optional, everything else is required. A Julia data-structure that can be serialized to JSON as follows, ``` { "order":,...
How should we deal with float vs int data types?