In my data, each instance has several attributes as "TRUE" or "FALSE".
For example:
Instance1: X1=TRUE, X2=TRUE, X3=FALSE, ...
Instance2: X1=FALSE, X2=TRUE, X3=FALSE, ...
I need to classify a TRUE/FALSE attribute, named Y, of each instance. So far, what I know is the conditional probability P(Y|X1), P(Y|X2), ..., and the marginal probability P(X1), P(X2), ...
Is there an existed model to do the inference? Thanks.