Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

TensorFlow 操作

  • 加法
  • 减法
  • 乘法
  • 除法
  • 平方
  • 重塑

张量加法

可以使用 tensorA.add(tensorB) 来添加两个张量。

示例

const tensorA = tf.tensor([[1, 2], [3, 4], [5, 6]]);
const tensorB = tf.tensor([[1,-1], [2,-2], [3,-3]]);

// 张量加法
const tensorNew = tensorA.add(tensorB);

// 结果: [ [2, 1], [5, 2], [8, 3] ]

亲自尝试 »


张量减法

可以使用 tensorA.sub(tensorB) 来减去两个张量。

示例

const tensorA = tf.tensor([[1, 2], [3, 4], [5, 6]]);
const tensorB = tf.tensor([[1,-1], [2,-2], [3,-3]]);

// 张量减法
const tensorNew = tensorA.sub(tensorB);

// 结果: [ [0, 3], [1, 6], [2, 9] ]

亲自尝试 »



张量乘法

可以使用 tensorA.mul(tensorB) 来乘以两个张量。

示例

const tensorA = tf.tensor([1, 2, 3, 4]);
const tensorB = tf.tensor([4, 4, 2, 2]);

// 张量乘法
const tensorNew = tensorA.mul(tensorB);

// 结果: [ 4, 8, 6, 8 ]

亲自尝试 »


张量除法

可以使用 tensorA.div(tensorB) 来除以两个张量。

示例

const tensorA = tf.tensor([2, 4, 6, 8]);
const tensorB = tf.tensor([1, 2, 2, 2]);

// 张量除法
const tensorNew = tensorA.div(tensorB);

// 结果: [ 2, 2, 3, 4 ]

亲自尝试 »


张量平方

可以使用 tensor.square() 来计算张量的平方。

示例

const tensorA = tf.tensor([1, 2, 3, 4]);

// 张量平方
const tensorNew = tensorA.square();

// 结果 [ 1, 4, 9, 16 ]

亲自尝试 »


张量重塑

张量中的元素数量是形状中大小的乘积。

由于可以有不同形状但具有相同大小,因此通常很有用地将张量重塑为具有相同大小的其他形状。

可以使用 tensor.reshape() 来重塑张量。

示例

const tensorA = tf.tensor([[1, 2], [3, 4]]);
const tensorB = tensorA.reshape([4, 1]);

// 结果: [ [1], [2], [3], [4] ]

亲自尝试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.