pytorch-tutorial

Top 16 pytorch-tutorial Open-Source Projects

  • pytorch-tutorial

    PyTorch Tutorial for Deep Learning Researchers

  • Machine-Learning-Collection

    A resource for learning about Machine learning & Deep Learning

  • Project mention: Building an AI Game Bot 🤖Using Imitation Learning and 3D Convolution ResNet | dev.to | 2024-01-02

    def compute_mean_std(dataloader): ''' We assume that the images of the dataloader have the same height and width source: https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_std_mean.py ''' # var[X] = E[X**2] - E[X]**2 channels_sum, channels_sqrd_sum, num_batches = 0, 0, 0 for batch_images, labels in tqdm(dataloader): # (B,H,W,C) batch_images = batch_images.permute(0,3,4,2,1) channels_sum += torch.mean(batch_images, dim=[0, 1, 2, 3]) channels_sqrd_sum += torch.mean(batch_images ** 2, dim=[0, 1, 2,3]) num_batches += 1 mean = channels_sum / num_batches std = (channels_sqrd_sum / num_batches - mean ** 2) ** 0.5 return mean, std compute_mean_std(dataloader)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • pytorch-seq2seq

    Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.

  • interviews.ai

    It is my belief that you, the postgraduate students and job-seekers for whom the book is primarily meant will benefit from reading it; however, it is my hope that even the most experienced researchers will find it fascinating as well.

  • Project mention: Deep Learning Interviews | news.ycombinator.com | 2023-05-05
  • pytorch-sentiment-analysis

    Tutorials on getting started with PyTorch and TorchText for sentiment analysis.

  • machine-learning-articles

    🧠💬 Articles I wrote about machine learning, archived from MachineCurve.com.

  • a-PyTorch-Tutorial-to-Object-Detection

    SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • a-PyTorch-Tutorial-to-Image-Captioning

    Show, Attend, and Tell | a PyTorch Tutorial to Image Captioning

  • PPO-PyTorch

    Minimal implementation of clipped objective Proximal Policy Optimization (PPO) in PyTorch

  • pytorch-image-classification

    Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.

  • PyTorchStepByStep

    Official repository of my book: "Deep Learning with PyTorch Step-by-Step: A Beginner's Guide"

  • a-PyTorch-Tutorial-to-Super-Resolution

    Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network | a PyTorch Tutorial to Super-Resolution

  • First-steps-towards-Deep-Learning

    This is an open sourced book on deep learning.

  • thinking-in-tensors-writing-in-pytorch

    Thinking in tensors, writing in PyTorch (a hands-on deep learning intro)

  • a-PyTorch-Tutorial-to-Transformers

    Attention Is All You Need | a PyTorch Tutorial to Transformers

  • Project mention: Transformers Tutorial - learn to implement transformers from scratch | /r/learnmachinelearning | 2023-05-01
  • pytorch-accelerated

    A lightweight library designed to accelerate the process of training PyTorch models by providing a minimal, but extensible training loop which is flexible enough to handle the majority of use cases, and capable of utilizing different hardware options with no code changes required. Docs: https://pytorch-accelerated.readthedocs.io/en/latest/

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

pytorch-tutorial related posts

  • Building an AI Game Bot 🤖Using Imitation Learning and 3D Convolution ResNet

    2 projects | dev.to | 2 Jan 2024
  • What can be the reasons of BatchNorm working and Dropout not working in YoloV1 Pytorch implementation?

    1 project | /r/MLQuestions | 8 Jun 2023
  • How to create a custom parallel corpus for machine translation with recent versions of pytorch and torchtext?

    2 projects | /r/pytorch | 19 Feb 2023
  • Where does the loss function for Policy Gradient come from?

    1 project | /r/reinforcementlearning | 18 Nov 2022
  • I need help knowing how to improve a CycleGan I am working on.

    1 project | /r/learnmachinelearning | 13 Jun 2022
  • Pytorch: Custom Dataset for Machine Translation

    1 project | /r/learnpython | 8 Apr 2022
  • PyTorch - What does contiguous() do?

    1 project | /r/codehunter | 29 Mar 2022
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 1 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Index


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com