var fDesc=new Array();
fDesc[0] = "GPUMLib is an open source Graphics Processing Unit Machine Learning Library. GPUMLib aims to empower the machine learning community with a high-performance library by tapping on the GPU enormous parallel computational power. This library is mainly developed in C++ and CUDA (with some C# tools).
Includes the following machine learning algorithms and components: Back-Propagation (BP), Multiple Back-Propagation (MBP), Non-Negative Matrix Factorization (NMF)";
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 = '';
}
}