I have a Bayes net (DAG) model that I created using pymc 2.3. All variables in it are random Bernoulli variables. When I call the MAP.fit () method on it before fetching, I get the following warning for all my random variables:
value is neither numerical nor array with floating-point dtype. Recommend fitting method fmin (default)
From gythub repo pymc, it seems that this warning is printed if the underlying type of the stochastic variable is not a float. For Bernoulli RV type (and should be) bool.
Does this mean that the MAP step will have erratic results?
python bayesian-networks pymc
Yair
source share