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
Long time ago, for the Belief Propagation we added the Algorithm Interface.
With my last commit of today, with the help of @davidhuber , I also added a pipeline class called Pipe. The idea is to use the Pipe to build the Belief Propagation algorithm as a Pipeline that can produce a self-updatable JunctionTree.
Doing so I thought that we need some kind of interfaces as in sklearn or Spark:
a Transformer interface that act like the current Algorithm interface and transform one input to an output;
an Estimator interface that take some inputs but does not produce any kind of output.
(Names are from Spark)
Will this be somewhat helpful?
The text was updated successfully, but these errors were encountered:
Long time ago, for the Belief Propagation we added the Algorithm Interface.
With my last commit of today, with the help of @davidhuber , I also added a pipeline class called Pipe. The idea is to use the
Pipe
to build the Belief Propagation algorithm as a Pipeline that can produce a self-updatableJunctionTree
.Doing so I thought that we need some kind of interfaces as in sklearn or Spark:
Transformer
interface that act like the current Algorithm interface and transform one input to an output;Estimator
interface that take some inputs but does not produce any kind of output.(Names are from Spark)
Will this be somewhat helpful?
The text was updated successfully, but these errors were encountered: