Tensorflow.js tf.util.now()函数
Tensorflow.js 是一个由谷歌开发的开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。
.util.now()函数用于查找以毫秒为单位的当前时间,该时间具有高分辨率,并且相对于过去的不一致时间。此外,它通过各种平台运行,即 node.js、浏览器。
句法:
tf.util.now()
参数:
它不接受任何参数。
返回值:返回数字。
示例 1:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling tf.util.now() method and
// printing output
console.log(tf.util.now());
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling tf.sin() and tf.util.now()
// methods
var res = (tf.sin(tf.util.now()));
// printing output
console.log(res);
输出:
1106999.345
示例 2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling tf.sin() and tf.util.now()
// methods
var res = (tf.sin(tf.util.now()));
// printing output
console.log(res);
输出:
Tensor
0.6055543422698975
参考: https://js.tensorflow.org/api_node/2.0.1/#util.now