Tensorflow.js tf.removeBackend()函数
Tensorflow.js是谷歌开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。它还可以帮助开发人员用 JavaScript 语言开发 ML 模型,并且可以直接在浏览器或 Node.js 中使用 ML。
tf.removeBackend()函数用于删除后端和注册工厂。
句法:
tf.removeBackend(name)
参数:
- name:我们要删除的后端的名称。
返回值:返回 void
示例 1:
Javascript
// Setting the backend
tf.setBackend("cpu")
console.log(tf.getBackend())
tf.removeBackend('cpu')
console.log(tf.getBackend())
Javascript
// Setting the backend
tf.setBackend("cpu")
tf.removeBackend('cpu')
console.log(tf.getBackend())
tf.setBackend("webgl")
// Getting the backend using
// getBackend method
console.log(tf.getBackend())
输出:
cpu
null
示例 2:在此示例中,我们将后端设置为“cpu”,然后将其删除并设置为“webgl”。
Javascript
// Setting the backend
tf.setBackend("cpu")
tf.removeBackend('cpu')
console.log(tf.getBackend())
tf.setBackend("webgl")
// Getting the backend using
// getBackend method
console.log(tf.getBackend())
输出:
null
webgl
参考: https://js.tensorflow.org/api/latest/#removeBackend