var fDesc=new Array(); fDesc[0] = "JellyFish is a neural net based backgammon program that plays at a very high level. On the highest playing level it matches the best humans in the world, and on the very fast level 5 a top human will hardly win more than 55% of the time. Also, its use of the doubling cube is outstanding.

JellyFish is able to play matches of any length, or 'money games' where each point is equally valuable. JellyFish uses artificial neural networks, trained to play backgammon from self play. An artificial neural network is a model of how the human brain works on the level of individual brain cells. Fredrik Dahl developed the neural nets of JellyFish, and used the neural net compiler nn from Neureka ANS.

This program can be used for fun, for testing your game, for analyzing recorded matches, or most importantly: To improve your game."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }