#概要
tensorflow.jsのsandbox作った。
#成果物
#サンプルコード
var out = document.getElementById("out");
var src = document.getElementById("src");
out.innerHTML = '';
function run() {
try
{
eval(src.value);
alert("結果は、コンソール見てね。");
}
catch(e)
{
var b = document.createElement('b');
b.appendChild(document.createTextNode(e));
b.style.color = '#F00';
out.appendChild(b);
}
}
以上。