Tensorflow.js tf.signal.hannWindow()函数
Tensorflow.js 是谷歌开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。它还可以帮助开发人员用 JavaScript 语言开发 ML 模型,并且可以直接在浏览器或 Node.js 中使用 ML。
tf.signal.hannWindow()函数用于生成hann 窗口。
句法:
tf.signal.hannWindow (windowLength)
参数:此函数接受单个参数,如下所示:
- windowLength:用于生成 Hann 窗口。
返回值:它返回 tf.Tensor1D。
示例 1:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
tf.signal.hannWindow(9).print();
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
tf.signal.hannWindow(3).print();
输出:
Tensor
[0, 0.1464466, 0.5, 0.8535534, 1, 0.8535534, 0.5, 0.1464466, 0]
示例 2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
tf.signal.hannWindow(3).print();
输出:
Tensor
[0, 1, 0]
参考: https://js.tensorflow.org/api/latest/#signal.hannWindow