awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
TingsongYu avatar

TingsongYu/PyTorch-Tutorial-2nd

0
View on GitHub↗
4,555 stele·484 fork-uri·Jupyter Notebook·13 vizualizăritingsongyu.github.io/PyTorch-Tutorial-2nd↗

PyTorch Tutorial 2nd

Acest proiect este o resursă educațională cuprinzătoare și un curs pentru construirea de rețele neuronale folosind PyTorch. Acoperă elementele fundamentale ale deep learning-ului, inclusiv manipularea tensorilor, diferențierea automată și construcția componentelor modulare de rețele neuronale.

Repository-ul servește drept ghid tehnic pentru mai multe domenii specializate. Oferă detalii de implementare pentru sarcini de computer vision, cum ar fi clasificarea imaginilor, detecția obiectelor și segmentarea semantică, precum și fluxuri de lucru de procesare a limbajului natural (NLP) care implică transformatoare, rețele recurente și modele generative. În plus, include o referință pentru AI generativ, concentrându-se în mod specific pe sinteza de imagini prin modele de difuzie și rețele adversariale.

Materialul se extinde către optimizarea modelelor și pipeline-uri de deployment. Acoperă tehnici pentru reducerea dimensiunii modelelor și creșterea vitezei de inferență prin cuantizare și exportul modelelor în formate precum ONNX și TensorRT. Alte domenii de capabilitate includ ingineria datelor pentru încărcarea paralelă, evaluarea modelelor folosind metrici personalizate și deployment-ul modelelor de limbaj mari (LLM) open-source.

Proiectul este livrat în principal sub formă de serie de Jupyter Notebooks.

Features

  • Neural Network Construction - Provides comprehensive guidance on designing and building deep learning architectures using layers and model abstractions.
  • Foundational Workflows - Provides the foundational building blocks for tensors, automatic differentiation, and modular neural network construction.
  • Foundational Basics - Teaches fundamental building blocks of deep learning, including tensor manipulation and automatic differentiation in PyTorch.
  • Automatic Differentiation - Implements automatic gradient calculation for backpropagation by analyzing the network's forward pass.
  • Automatic Differentiation Engines - Implements the fundamental automatic differentiation engine used for calculating gradients and updating model parameters.
  • Dynamic Graph Frameworks - Demonstrates the use of dynamic computational graphs to allow flexible network modifications during runtime.
  • Computer Vision Models - Implements various computer vision models for image classification, object detection, and semantic segmentation.
  • Image Segmentation - Implements techniques for partitioning images into distinct regions to isolate objects of interest.
  • Computer Vision Workflows - Provides end-to-end pipelines for image classification, object detection, and semantic segmentation using PyTorch.
  • Activation Functions - Implements non-linear activation functions like ReLU and Softmax to enable learning of complex patterns.
  • Learning Rate Schedules - Implements algorithms for dynamically adjusting the learning rate during training to improve convergence stability.
  • Custom Dataset Implementations - Provides customized logic for reading raw data samples from disk and preprocessing them for machine learning models.
  • Data Preprocessing - Provides tools for cleaning, transforming, and encoding raw data to prepare it for model consumption.
  • Dynamic Tensor Shapes - Changes tensor structures through operations such as reshaping, squeezing, permuting, and rotating axes.
  • Gradient Computation - Provides tools for calculating function gradients to support model training and optimization.
  • Gradient Reset Utilities - Provides utilities for clearing accumulated gradients in neural network parameters between training iterations.
  • Gradient Tracking - Provides foundational implementation of gradient tracking for training neural networks.
  • Gradient Tracking Suppressions - Implements mechanisms to disable gradient recording to optimize memory usage and inference speed.
  • Learning Rate Decay Schedules - Provides strategies for scheduling learning rate decay and annealing during model training.
  • Loss Functions - Provides the fundamental capability of defining mathematical functions to quantify the difference between predictions and targets.
  • Linear Transformations - Implements linear transformations using weight matrices and bias terms to map data between vector spaces.
  • Custom Layer Implementations - Demonstrates how to create user-defined neural network layers extending base framework functionality.
  • Neural Network Layers - Provides pre-defined architectural building blocks for constructing neural networks.
  • Convolution Layers - Implements convolutional layers for extracting spatial features from multi-dimensional tensors.
  • Incremental Inference Streaming - Generates text tokens incrementally via a stream generator for immediate output.
  • Deep Learning Optimization - Reduces model size and increases inference speed through quantization, pruning, and computation graph optimization.
  • Model Deployment - Converts models via ONNX and TensorRT to implement acceleration and quantization for production environments.
  • Online Preprocessing - Implements data transformations applied to individual samples on-the-fly during the loading process before batching.
  • Parallel Data Loading - Provides concurrent loading of training datasets into the computation graph to maximize throughput and prevent bottlenecks.
  • Multi-Process Data Loading - Provides parallel data loading strategies using multiple CPU subprocesses and pinned memory to optimize GPU throughput.
  • Model Training Pipelines - Provides end-to-end workflows and scripts for sourcing datasets, training models, and validating performance.
  • Training and Evaluation Pipelines - Builds automated workflows for executing model training, epoch iteration, and validation dataset management.
  • Model Execution Mode Management - Implements control mechanisms for switching between training and evaluation behaviors in neural networks.
  • Model Performance Optimization - Provides techniques for increasing inference speed and reducing memory usage through quantization and mixed precision.
  • Model Parameter Management - Provides mechanisms for systematically managing, storing, and loading neural network weights and biases.
  • Model Quantization - Implements techniques for reducing the precision of model weights to decrease memory footprint and accelerate inference.
  • Model Weight Management - Provides utilities for downloading, storing, and loading pre-trained model weights.
  • Training Weight Adjustments - Implements the process of updating internal connection strengths during the training phase to minimize prediction error.
  • Natural Language Processing - Develops text classification and translation models using transformers, recurrent networks, and language-specific architectures.
  • Natural Language Processing Implementations - Builds neural architectures for translation and question answering using transformers and recurrent networks.
  • Model State Serialization - Provides processes for saving and loading trained network weights and architecture configurations.
  • Parameter Optimizers - Implements algorithms used to update model weights to minimize loss during training.
  • Cross-Entropy Loss Functions - Implements general cross-entropy loss functions used to optimize classification performance.
  • Model Quantization Techniques - Implements both post-training and quantization-aware training to reduce weight precision and improve performance.
  • Post-Training Quantization - Converts high-precision weights to low-bit integers after training is complete to reduce memory footprint.
  • Semantic Segmentation - Builds pixel-level classification models using encoder-decoder architectures for binary and multiclass semantic segmentation.
  • Autoregressive Text Generation - Implements iterative sequence generation by feeding previous predictions back into the decoder.
  • Tensor Derivative Calculations - Enables the computation of derivatives of output tensors relative to input tensors.
  • Tensor Detachments - Implements tensor detachment to prevent unnecessary gradient tracking during specific operations.
  • Tensor Indexing - Provides mechanisms for slicing and selecting specific elements from multi-dimensional tensors using masks and indices.
  • Tensor Initialization - Initializes multi-dimensional arrays from raw data, existing arrays, or predefined shapes.
  • Tensor Shape Inspection - Retrieves critical tensor properties such as data type, shape, and device placement.
  • Video Object Tracking - Maintains persistent object identities and positions across sequential video frames using feature matching.
  • Model Construction Patterns - Implements the construction of neural networks using core PyTorch modules for tensors and automatic differentiation.
  • Generative AI Implementations - Provides practical code implementations of generative adversarial networks and diffusion models for synthesizing realistic imagery.
  • Model Persistence - Implements mechanisms for serializing and deserializing trained model states to disk.
  • Batched Data Loading - Implements automatic collation of individual data samples into mini-batches to prepare data for training.
  • Data Loading Pipelines - Implements customized sequences of loading and transformation operations to prepare raw data for batching.
  • Tensor Joining and Splitting - Combines tensors via stacking and divides them into smaller chunks along specified dimensions.
  • Dataset Loading - Implements processes for retrieving data using indexing or sequences to provide a consistent stream of samples.
  • Neural Network Modularization - Constructs neural network architectures using modular containers and hooks to manage parameters and data flow.
  • Deep Learning Courses - Serves as a comprehensive educational resource for building neural networks using PyTorch tensors and modular components.
  • PyTorch NLP Tutorials - Provides tutorials on implementing transformers and recurrent networks for text processing and translation tasks.
  • Forward Pass Definitions - Defines network layers as sub-modules and specifies their execution order within a propagation function.
  • Computational Graphs - Models computational graphs to calculate derivatives by tracing data flow through a network of nodes.
  • Multi-Dimensional Arrays - Represents complex data like images and vectors as tensors of varying dimensions.
  • Mean Absolute Error Calculators - Implements calculators for the average absolute difference between predicted and target values.
  • Random Tensor Generation - Creates tensors sampled from probability distributions including uniform, normal, and Bernoulli.
  • Tensor Manipulations - Performs mathematical operations, random sampling, and serialization on multi-dimensional array structures.
  • Tensor Operations - Executes element-wise calculations, linear algebra routines, and spectral transformations on tensors.
  • Neural Network Layer Abstractions - Teaches how to build reusable class-based abstractions for repeating patterns in deep learning architectures.
  • Bidirectional Processing Architectures - Implements architectures that process sequences in both forward and backward directions to capture full context.
  • Computer Vision Preprocessing - Implements specialized computer vision functions, such as region of interest pooling, for preprocessing pipelines.
  • Image Classification Models - Employs pre-trained models to assign descriptive labels to entire images.
  • Object Detection - Locates and identifies multiple objects within images using bounding boxes and class labels.
  • Appearance-Based Refinements - Matches tracks to detections using visual feature vectors and distance metrics to maintain identity.
  • Detection-to-Track Association - Associates new detections with existing tracking IDs based on the intersection over union of bounding boxes.
  • Position Estimation - Produces stable position estimates by blending historical track data with current detections.
  • Image Diffusion Models - Implements generative models that produce images by iteratively refining Gaussian noise.
  • Segmentation Loss Functions - Provides specialized objective functions like Dice and Jaccard to optimize image segmentation training.
  • Cycle Consistency Constraints - Implements loss functions that ensure domain-translated images can be reconstructed to their original form.
  • Object Detection Training - Implements training processes specifically designed for teaching neural networks to localize and classify objects in visual data.
  • Distributed GPU Training - Splits input data and replicates parameters across several GPUs for parallel computation during training.
  • Weight Initialization Functions - Provides functions to set starting values for neural network parameters across submodules.
  • Evaluation Metrics - Computes evaluation metrics for audio, image, and text tasks by aggregating per-batch data.
  • Feature Extraction - Implements gradient-based and hook-based visual feature extraction from internal model layers.
  • Image-to-Image Translation - Transforms images between different domains using dual-generator and dual-discriminator architectures.
  • Latent Diffusion Models - Implements diffusion and denoising processes within a compressed latent feature space.
  • Synthetic Media Generators - Synthesizes realistic imagery using adversarial networks and diffusion models.
  • GPU Acceleration - Moves tensors and model modules to GPU devices to accelerate the processing speed of AI models.
  • Graph Compilation Optimizations - Covers techniques for compiling and optimizing the computation graph to increase execution speed on hardware backends.
  • Hardware Device Selection - Provides utilities for specifying and targeting particular hardware accelerators for model execution.
  • Image Captioning Models - Implements neural network models that generate textual descriptions of visual scenes.
  • Caption Generators - Provides systems to generate natural language captions describing visual content and context.
  • Image Data Preprocessing - Provides techniques for resizing and normalizing raw images into tensors for deep learning consumption.
  • Image Dataset Loaders - Implements mechanisms to read image and label data from disk for training and evaluation workflows.
  • Conditional Image Generation - Provides mechanisms to steer diffusion model output using labels or text embeddings.
  • Image Retrieval Systems - Implements systems for searching and matching image data using vector embeddings.
  • Performance Benchmarking - Measures inference throughput and latency across different precisions and batch sizes.
  • Language Model Pre-training - Covers the process of training transformer models on massive text corpora to learn general linguistic patterns.
  • Standardized Training Workflows - Provides consistent loops and interfaces for training and evaluation across different model architectures.
  • Large Language Model Integrations - Provides guidance on installing and configuring open-source large language models for academic and industrial use.
  • Training State Checkpointing - Implements mechanisms to save and restore the full training state, including optimizer parameters, to resume training.
  • Model Construction APIs - Provides APIs for assembling neural network layers and compiling them into execution engines.
  • Visual Target Tracking - Maintains a real-time lock on moving targets across video frames to calculate movement statistics.
  • Inference Engine Network Construction - Provides manual definition of network layers and weight assignments specifically for inference engine optimization.
  • Transformer Architectures - Implements deep learning models utilizing multi-head attention and positional encoding for sequence processing.
  • Layer Freezing - Implements techniques for disabling weight updates in specific neural network layers during training.
  • Model Inference Accelerators - Implements software components that increase the speed and efficiency of model inference tasks.
  • Quantized LLM Deployments - Deploys quantized large language models optimized for memory efficiency on GPUs.
  • ONNX Model Exporters - Provides utilities for converting machine learning models into the standardized ONNX format.
  • Custom Metric Definitions - Enables the creation of project-specific performance measures via custom state initialization and computation functions.
  • Task-Specific Fine-Tuning Pipelines - Implements pipelines to customize base models for niche tasks using targeted training data.
  • Pre-trained Weight Adaptation - Implements techniques for initializing models with pre-trained weights and replacing final layers for new tasks.
  • Text Classification - Implements neural networks using recurrent and linear layers to assign categories to text data.
  • Image Augmentation Transforms - Implements geometric and color-based transformations to increase dataset diversity through data augmentation.
  • Model Complexity Analysis - Provides tools to calculate parameter counts and floating-point operations to evaluate the computational requirements of neural networks.
  • Model Deployment Pipelines - Implements deployment pipelines that export PyTorch models to ONNX and TensorRT for high-performance hardware execution.
  • Model Graph Optimizers - Implements tools for simplifying and optimizing model graphs to improve overall inference performance.
  • Model Inference Engines - Implements the construction and execution of optimized deep learning engines for production-ready predictions.
  • Layer Extractions - Provides capabilities for extracting intermediate nodes or internal layers from a model as outputs.
  • Parameter Inspection Utilities - Includes utilities for querying and aggregating the total number of parameters to analyze model size.
  • LLM Performance Evaluators - Verifies model performance by predicting entity labels on test datasets and parsing the outputs.
  • Model Performance Visualizations - Includes tools for generating graphical representations of model evaluation metrics, such as confusion matrices and loss curves.
  • ONNX Model Runtimes - Uses dedicated inference engines to load and execute ONNX models for cross-framework predictions.
  • Variable-Length Sequence Training - Processes batches of varying sequence lengths using padding and masking to ensure consistent gradient calculations.
  • Model Training Monitoring - Uses TensorBoard and confusion matrices to track training progress and visualize model behavior.
  • Named Entity Recognition - Implements systems for identifying and classifying entities such as people and locations within unstructured text.
  • Text Tokenization - Segments raw text into individual semantic units based on language rules or model requirements.
  • Word Embeddings - Implements the generation of vector representations of words that capture semantic relationships.
  • Vocabulary Mapping - Constructs index mappings between words and integers with a fixed maximum size.
  • Architecture Introspection - Implements functionality to inspect configuration files and class definitions to determine the underlying network structure.
  • Open-Source LLM Integrations - Provides guides for installing and configuring mainstream open-source large language models.
  • Parameter Group Management - Implements techniques for organizing model parameters into groups to apply distinct hyperparameters.
  • Pre-trained Embedding Integration - Implements capabilities for loading and integrating dense vector representations from external vocabularies into models.
  • Pre-trained Model Implementations - Provides frameworks and libraries that implement pre-trained neural network weights for immediate inference.
  • Pre-trained Model Weight Acquisition - Implements utilities for retrieving pre-trained model weights from external repositories.
  • Embedding Space Constrainers - Uses specialized loss functions to organize embedding vectors for improved image similarity search.
  • Model Architecture Inspection - Iterates through model parameters and submodules to retrieve them as objects or named entries.
  • Mask Post-processing - Transforms raw model probability maps into binary or categorical mask matrices using thresholding.
  • Segmentation Metrics - Calculates spatial overlap metrics such as IoU and Dice coefficients for image segmentation.
  • Text Sequence Generation - Implements the production of new natural language text by predicting subsequent tokens.
  • Sequence Classifiers - Assigns categorical labels to sequences or tokens for tasks like sentiment analysis and entity recognition.
  • Sequence-to-Sequence Models - Implements encoder-decoder architectures using recurrent networks to transform input sequences into target sequences.
  • Synchronized Label Augmentations - Ensures spatial consistency by applying identical geometric transformations to images and their labels.
  • Text Dataset Preparation - Prepares large-scale text corpora through splitting, tokenization, and vocabulary construction.
  • BERT Input Mapping - Maps text tokens to input IDs and attention masks specifically for BERT model consumption.
  • Sequence Category Assignments - Provides methods for assigning categorical labels to text sequences for tasks such as sentiment analysis.
  • Vocabulary Construction - Creates mappings from tokens to integer indices based on frequency and specialized markers.
  • Training Convergence Optimization - Tunes training performance and convergence using various loss functions, optimizers, and learning rate schedules.
  • Training Curve Analysis - Provides methods for plotting and interpreting training and validation curves to diagnose overfitting and underfitting.
  • Dataset Management - Provides tools for loading and transforming datasets using PyTorch data loaders and augmentation libraries.
  • Translation Quality Evaluation - Measures the accuracy of generated translations against reference texts using the BLEU score.
  • Weight Initialization - Implements methods for setting initial values for neural network parameters to improve convergence.
  • Engine Serialization - Compiles trained model parameters into hardware-specific binary engines to avoid repeated optimization during deployment.
  • Noise Prediction Objectives - Implements training objectives that minimize error between predicted and actual Gaussian noise.
  • Large Language Model Deployments - Implements specialized deployment strategies for running open-source large language models on hardware.
  • Model Optimization Guides - Offers an instructional guide for reducing model size and increasing inference speed via quantization and model export.
  • Model Fine-Tuning - Provides processes for optimizing pretrained models on task-specific datasets.
  • BERT Fine-Tuning - Provides instructional material and implementation for optimizing BERT models for downstream NLP tasks.
  • Translation Model Training - Provides specific processes for training sequence-to-sequence models to map source languages to target languages.
  • Text Cleaning - Cleans raw text by removing irrelevant characters and stop words to create semantic sequences.
  • Asynchronous Loading Pipelines - Implements multi-process data loading to ensure the GPU remains saturated during training.
  • Text Preprocessing - Converts text into indexed sequences and ensures uniform length using padding and truncation.
  • Patch-Based Discriminators - Uses discriminators to classify local image patches as real or fake for adversarial training.
  • Optimizer State Persistence - Provides mechanisms to save and load the internal states of optimization algorithms to ensure training continuity.
  • Model Weight Precision Adjustments - Allows changing the data type of model weights to balance memory usage and numerical accuracy.
  • Pre-training Processing - Processes raw text files into numerical indices via concatenation and boundary markers for model pre-training.
  • Context Length Truncation - Truncates input sequences to a maximum length to optimize memory and computational efficiency.
  • Cross-Framework Model Conversion - Provides workflows for converting PyTorch models to standardized formats like ONNX for cross-framework deployment.
  • Deep Learning Architectures - Provides reference implementations of standard deep learning architectures like ResNet and VGG for educational use.
  • Differential Learning Rates - Demonstrates how to assign different learning rates to parameter groups to balance feature extraction and classification.
  • Training Image Augmentations - Implements random cropping, flipping, and automated augmentation strategies for vision datasets.
  • Real-Time Model Inference on Frames - Processes live streams or images through trained models for real-time object detection.
  • Inference Format Optimizations - Converts models into specialized formats to enable mixed precision and hardware acceleration.
  • Hyperparameter Configurations - Implements structured management of hyperparameters to track and compare their impact on model performance.
  • Model Performance Aggregators - Implements a tracking class to accumulate predictions and labels for computing running averages of loss and accuracy.
  • Model Prediction Analyzers - Analyzes model results through confusion matrices and precision-recall metrics to optimize accuracy.
  • Model Logic Encapsulations - Organizes machine learning computational logic and variables into modular classes for better maintainability.
  • Transformation Pipelines - Sequences multiple image processing operations into modular, ordered execution pipelines.
  • Training Progress Recording - Records text-based logs and metrics via timestamped directories to monitor the training phase.
  • System Performance Monitors - Provides monitoring for CPU and GPU utilization and data throughput to identify hardware performance bottlenecks.
  • Search Accuracy Evaluation - Calculates recall and mean average precision to measure the quality of image search results.
  • Neural Network Binary Serialization - Implements serialization of neural network architectures into binary formats for hardware portability.

Istoric stele

Graficul istoricului de stele pentru tingsongyu/pytorch-tutorial-2ndGraficul istoricului de stele pentru tingsongyu/pytorch-tutorial-2nd

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Start searching with AI

Alternative open-source pentru PyTorch Tutorial 2nd

Proiecte open-source similare, clasificate după numărul de funcționalități comune cu PyTorch Tutorial 2nd.
  • tingsongyu/pytorch_tutorialAvatar TingsongYu

    TingsongYu/PyTorch_Tutorial

    8,018Vezi pe GitHub↗

    This project is a comprehensive collection of educational examples and reference implementations for building vision and language models using PyTorch. It serves as a deep learning tutorial covering the end-to-end process of developing neural networks, from initial architecture definition to final production deployment. The repository provides detailed guides on implementing a wide range of domain-specific models, including convolutional neural networks for object detection and segmentation, as well as transformer and recurrent architectures for natural language processing. It emphasizes gene

    Python
    Vezi pe GitHub↗8,018
  • d2l-ai/d2l-enAvatar d2l-ai

    d2l-ai/d2l-en

    29,001Vezi pe GitHub↗

    This project is an educational platform and research toolkit designed to teach deep learning through a combination of mathematical theory, visual diagrams, and executable code. It provides a comprehensive environment for building, training, and evaluating neural networks, grounding complex concepts in interactive computational notebooks that allow for hands-on experimentation. The framework distinguishes itself by interleaving theoretical foundations—including linear algebra, calculus, and probability—with practical implementations across multiple industry-standard libraries. It supports flex

    Pythonbookcomputer-visiondata-science
    Vezi pe GitHub↗29,001
  • datawhalechina/thorough-pytorchAvatar datawhalechina

    datawhalechina/thorough-pytorch

    3,684Vezi pe GitHub↗

    This project is an educational resource and comprehensive guide for implementing and deploying deep learning models using the PyTorch framework. It provides a structured learning curriculum consisting of tutorials and notebooks that cover neural network architectures, data pipelines, and model optimization across multiple AI domains. The curriculum includes practical implementation guides for building convolutional networks, transformers, and recurrent models. It specifically focuses on workflows for computer vision, including image classification, object detection, and segmentation, as well

    Jupyter Notebookdeep-learningmachine-learningpython
    Vezi pe GitHub↗3,684
  • lyhue1991/eat_tensorflow2_in_30_daysAvatar lyhue1991

    lyhue1991/eat_tensorflow2_in_30_days

    9,933Vezi pe GitHub↗

    This project is a structured learning curriculum and technical reference for mastering deep learning with TensorFlow. It provides a comprehensive guide for building, training, and deploying neural networks, combining theoretical fundamentals with practical implementation examples. The repository distinguishes itself by covering the end-to-end machine learning workflow, from low-level tensor mathematics and linear algebra to the creation of complex model architectures. It includes specific guidance on developing data pipelines for diverse data types, such as images, text, and time-series seque

    Pythontensorflowtensorflow-examplestensorflow-tutorial
    Vezi pe GitHub↗9,933
Vezi toate cele 30 alternative pentru PyTorch Tutorial 2nd→

Întrebări frecvente

Ce face tingsongyu/pytorch-tutorial-2nd?

Acest proiect este o resursă educațională cuprinzătoare și un curs pentru construirea de rețele neuronale folosind PyTorch. Acoperă elementele fundamentale ale deep learning-ului, inclusiv manipularea tensorilor, diferențierea automată și construcția componentelor modulare de rețele neuronale.

Care sunt principalele funcționalități ale tingsongyu/pytorch-tutorial-2nd?

Principalele funcționalități ale tingsongyu/pytorch-tutorial-2nd sunt: Neural Network Construction, Foundational Workflows, Foundational Basics, Automatic Differentiation, Automatic Differentiation Engines, Dynamic Graph Frameworks, Computer Vision Models, Image Segmentation.

Care sunt câteva alternative open-source pentru tingsongyu/pytorch-tutorial-2nd?

Alternativele open-source pentru tingsongyu/pytorch-tutorial-2nd includ: tingsongyu/pytorch_tutorial — This project is a comprehensive collection of educational examples and reference implementations for building vision… d2l-ai/d2l-en — This project is an educational platform and research toolkit designed to teach deep learning through a combination of… datawhalechina/thorough-pytorch — This project is an educational resource and comprehensive guide for implementing and deploying deep learning models… lyhue1991/eat_tensorflow2_in_30_days — This project is a structured learning curriculum and technical reference for mastering deep learning with TensorFlow.… flashlight/flashlight — Flashlight is a standalone C++ machine learning library and tensor library used for building and training neural… facebookresearch/flashlight — Flashlight is a C++ machine learning library and deep learning framework designed for building and training neural…