My question is very simple, however I can't seem to figure it out.
I have build a network based on a dataset and learned the parameters.
Now I want to retrieve a conditional probability of some record in the data, say P(A=6 | B=0).
I know I can do this using the probability matrix for node A:
Code: Select all
DSL_Dmatrix * m = network.GetNode(network.FindNode("A"))->Definition()->GetMatrix();
So my question is, is there a function that translates the values in the dataset to coordinates, or would I have to determine this 'by hand'?