Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Summary | Basics of TensorFlow
course content

Conteúdo do Curso

Introduction to TensorFlow

SummarySummary

Let's now summarize all the key topics we've discussed in this course. Feel free to download the overview material in the end of this page.


Tensorflow Set Up

TensorFlow, the TensorFlow logo and any related marks are trademarks of Google Inc.

Instalation

Import


Tensor Types

Tensors Tensors convertion ND Tensors Convertion

Simple Tensor Creation


Tensor Properties

  • Rank: It tells you the number of dimensions present in the tensor. For instance, a matrix has a rank of 2. You can get the rank of the tensor using the .ndim attribute:
  • Shape: This describes how many values exist in each dimension. A 2x3 matrix has a shape of (2, 3). The length of the shape parameter matches the tensor's rank (its number of dimensions). You can get the the shape of the tensor by the .shape attribute:
  • Types: Tensors come in various data types. While there are many, some common ones include float32, int32, and string. You can get the the data type of the tensor by the .dtype attribute:
Tensor Properties

Tensor Axes

Tensor Axes

Applications of Tensors

  • Table Data
Table as Tensor
  • Text Sequences
Text as Tensor
  • Numerical Sequences
Numerical Sequence as Tensor
  • Image Processing
Image as Tensor
  • Video Processing
Video as Tensor

Batches

Batches ND Batches

Tensor Creation Methods


Convertions

  • NumPy to Tensor
  • Pandas to Tensor
  • Constant Tensor to a Variable Tensor

Data Types

Data Types

Arithmetic

  • Addition
  • Subtraction
  • Element-wise Multiplication
  • Division

Broadcasting

Broadcasting 1D Broadcasting 2D

Linear Algebra

  • Matrix Multiplication
  • Matrix Inversion
  • Transpose
  • Dot Product

Reshape

Reshape

Slicing

Slicing

Modifying with Slicing

Assign

Concatenating

Concatenation

Reduction Operations

Reduce Sum

Gradient Tape

Partial Derivatives

@tf.function

question-icon

What role does a loss function play in a neural network?

Selecione algumas respostas corretas

Tudo estava claro?

Seção 2. Capítulo 5
course content

Conteúdo do Curso

Introduction to TensorFlow

SummarySummary

Let's now summarize all the key topics we've discussed in this course. Feel free to download the overview material in the end of this page.


Tensorflow Set Up

TensorFlow, the TensorFlow logo and any related marks are trademarks of Google Inc.

Instalation

Import


Tensor Types

Tensors Tensors convertion ND Tensors Convertion

Simple Tensor Creation


Tensor Properties

  • Rank: It tells you the number of dimensions present in the tensor. For instance, a matrix has a rank of 2. You can get the rank of the tensor using the .ndim attribute:
  • Shape: This describes how many values exist in each dimension. A 2x3 matrix has a shape of (2, 3). The length of the shape parameter matches the tensor's rank (its number of dimensions). You can get the the shape of the tensor by the .shape attribute:
  • Types: Tensors come in various data types. While there are many, some common ones include float32, int32, and string. You can get the the data type of the tensor by the .dtype attribute:
Tensor Properties

Tensor Axes

Tensor Axes

Applications of Tensors

  • Table Data
Table as Tensor
  • Text Sequences
Text as Tensor
  • Numerical Sequences
Numerical Sequence as Tensor
  • Image Processing
Image as Tensor
  • Video Processing
Video as Tensor

Batches

Batches ND Batches

Tensor Creation Methods


Convertions

  • NumPy to Tensor
  • Pandas to Tensor
  • Constant Tensor to a Variable Tensor

Data Types

Data Types

Arithmetic

  • Addition
  • Subtraction
  • Element-wise Multiplication
  • Division

Broadcasting

Broadcasting 1D Broadcasting 2D

Linear Algebra

  • Matrix Multiplication
  • Matrix Inversion
  • Transpose
  • Dot Product

Reshape

Reshape

Slicing

Slicing

Modifying with Slicing

Assign

Concatenating

Concatenation

Reduction Operations

Reduce Sum

Gradient Tape

Partial Derivatives

@tf.function

question-icon

What role does a loss function play in a neural network?

Selecione algumas respostas corretas

Tudo estava claro?

Seção 2. Capítulo 5
some-alt