About 41,900 results
Open links in new tab
  1. torch.TensorPyTorch 2.11 documentation

    Dec 23, 2016 · There are a few main ways to create a tensor, depending on your use case. To create a tensor with pre-existing data, use torch.tensor(). To create a tensor with specific size, use torch.* …

  2. Tensors in Pytorch - GeeksforGeeks

    Jul 4, 2021 · A Pytorch Tensor is basically the same as a NumPy array. This means it does not know anything about deep learning or computational graphs or gradients and is just a generic n …

  3. GitHub - pytorch/pytorch: Tensors and Dynamic neural networks in …

    PyTorch provides Tensors that can live either on the CPU or the GPU and accelerates the computation by a huge amount. We provide a wide variety of tensor routines to accelerate and fit your scientific …

  4. PyTorch Tensors: The Ultimate Guide - datagy

    Jul 31, 2023 · In this guide, you’ll learn all you need to know to work with PyTorch tensors, including how to create them, manipulate them, and discover their attributes. PyTorch tensors are a fundamental

  5. Tensors in PyTorch | A Beginner’s Introduction

    Mar 22, 2025 · Learn the basics of tensors in PyTorch. This beginner-friendly guide explains tensor operations, shapes, and their role in deep learning with practical examples.

  6. Mastering PyTorch Tensors: A Comprehensive Guide

    Jan 16, 2026 · At the heart of PyTorch lies the `Tensor` object, which is a multi - dimensional matrix containing elements of a single data type. Tensors in PyTorch are similar to NumPy arrays but can …

  7. torch.TensorPyTorch 1.11.0 documentation

    torch.Tensor is an alias for the default tensor type (torch.FloatTensor). A tensor can be constructed from a Python list or sequence using the torch.tensor() constructor: torch.tensor() always copies …

  8. PyTorch Tensors Explained: What Confused Me at First - Medium

    Jul 2, 2025 · In this post, I’ll walk you through what tensors are, how to work with them in PyTorch, and a few small tips that helped me get more comfortable along the way. What are Tensors? Tensors are...

  9. Introduction to PyTorch Tensors

    Introduction to PyTorch Tensors - Documentation for PyTorch Tutorials, part of the PyTorch ecosystem.

  10. Introduction to PyTorch Tensors | CodeSignal Learn

    It covers the basic concepts of what tensors are, their importance in machine learning, and how to create and inspect tensors using PyTorch. Through code examples, learners will understand …