<html>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-vis@1.5.1/dist/tfjs-vis.umd.min.js"></script>
<body>
<h2>Tensorflow Visor</h2>
<div id="demo"></div>
<script>
const surface = document.getElementById('demo');
const data = [
{index: 0, value: 100},
{index: 1, value: 200},
{index: 2, value: 150},
{index: 3, value: 250},
];
tfvis.render.barchart(surface, data);
</script>
</body>
</html>