class InferNetTest
{
Variable<int> _x = Variable.Poisson(6);
InferenceEngine _engine = new InferenceEngine();
public void Infer()
{
Console.WriteLine(_engine.Infer(_x > 0));
}
}
Why does it trigger the error "Poisson is not of type Discrete for ..."
Does it mean I have to plug in the formula my self to get the probability?