29
Mar

What is the best-selling statistics book of all time?

While I was reading the book Machine Learning in Action, I came across with this:

“To most people, statistics is an esoteric subject used for companies to lie about how great their products are. (There’s a great manual on how to do this called How to Lie with Statistics by Darrell Huff. Ironically, this is the best-selling statistics book of all time.)”

25
May

Game Interface

public interface Game<GAME extends Game<GAME>>
{
    GAME copy();
    int getCurrentPlayer(); // The players start from 0, 1, 2... and so on
    boolean isGameOver();
    int getMovesSize();
    List<String> getMoves();
    Outcome[] getOutcomes();
    void makeMove(int move);
    void reset();
    String boardString();
}
10
May

CEC 2011 Ms Pac-Man vs Ghost Team Competition

Ms Pac-Man is a highly enjoyable yet challenging game that is usually viewed form the perspective of the Ms Pac-Man agent, and this has already been the subject of an on-going series of competitions. However, the game also provides an excellent environment for testing multi-agent strategies, by controlling the team of ghosts. This website contains all the information required to get you started with your controller:

http://www.pacman-vs-ghosts.net/