Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a little problem in my little project , I wish that someone here could help me!

I am planning to use a bayesian network as a decision factor in my game AI and I want to improve the decision making every step of the way , anyone knows how to do that ? Any tutorials / existing implementations will be very good,I hope some of you could help me.

I heard that a programmer in this community did a good implementation of this put together for poker game AI.I am planning to use it like him ,but in another poker(Texas) or maybe Rentz.

Looking for C/c++ or c# or java code.

Thanks , Mike

share|improve this question

2 Answers

up vote 3 down vote accepted

There are two steps:

  1. You need to know how to apply a Bayesian Network and how to define the nodes and the belief propagation for your game. To do this, you need to read tutorials.

  2. Apply software. This is quite easy, there are plenty of free/open source implementations. At the end of the wiki page http://en.wikipedia.org/wiki/Bayesian_network, there are a list of software. You may want to check Infer.Net, which is a mature library developed in MSR Cambridge.

share|improve this answer

You can try Charniak's Bayesian Networks Without Tears. For Bayesian Network implementations, look at BUGS and LibB.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.