我正在运行 Tensorflow.js 库进行机器学习,正在学习 Tensorflow ,当我运行简单程序时出现以下警告
<html>
<head>
<!-- Load TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@0.12.5"> </script>
<!-- Place your code in the script tag below. You can also use an external .js file -->
<script>
tf.tensor([1,2,3,4,5]).print();
tf.tensor([[1,2,3],[4,5,6]]).print();
</script>
</head>
<body>
</body>
</html>
此浏览器不支持WebGL。在 createWebGLRenderingContextFromCanvas
是什么原因导致我的浏览器发出此警告?