📜  Tensorflow.js tf.linalg.gramSchmidt()函数

📅  最后修改于: 2022-05-13 01:56:32.057000             🧑  作者: Mango

Tensorflow.js tf.linalg.gramSchmidt()函数

Tensorflow.js 是谷歌开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。

tf.linalg.gramSchmidt()函数用于使用 Gram-Schimdt 过程对向量进行正交化。

句法:

tf.linalg.gramSchmidt( xs ) 

参数:

  • xs(一个 tf.Tensor1D 数组或 tf.Tensor2D):这些是要正交化的向量。

返回值:它返回一个 tf.Tensor1D 数组或 tf.Tensor2D。

示例 1:

Javascript
const tf = require("@tensorflow/tfjs")
  
// Creating a 2-D tensor
const input = tf.tensor2d([
    [3, 7], 
    [4, 6]
]);
  
// Getting the orthogonalized vector
let result = tf.linalg.gramSchmidt(input);
  
result.print();


Javascript
const tf = require("@tensorflow/tfjs")
  
// Creating a 2-D tensor
const input = tf.tensor2d([
    [5, 7, 2], 
    [7, 6, 9],
    [1, 2, 3]
]);
  
// Getting the orthogonalized vector
let result = tf.linalg.gramSchmidt(input);
  
result.print();


输出:

Tensor
    [[0.3939193, 0.919145  ],
     [0.919145 , -0.3939194]]

示例 2:

Javascript

const tf = require("@tensorflow/tfjs")
  
// Creating a 2-D tensor
const input = tf.tensor2d([
    [5, 7, 2], 
    [7, 6, 9],
    [1, 2, 3]
]);
  
// Getting the orthogonalized vector
let result = tf.linalg.gramSchmidt(input);
  
result.print();

输出:

Tensor
    [[0.5661386, 0.792594  , 0.2264554],
     [0.1283516, -0.3561312, 0.925579 ],
     [-0.814256, 0.4949402 , 0.3033505]]

参考: https://js.tensorflow.org/api/latest/#linalg.gramSchmidt