awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 مستودعات

Awesome GitHub RepositoriesTensor Concatenation

Joining multiple tensors along a specified dimension into a single tensor.

Distinct from Tensor Transformations: Specifically covers the joining of tensors, distinct from packing different shapes into a single array.

Explore 6 awesome GitHub repositories matching data & databases · Tensor Concatenation. Refine with filters or upvote what's useful.

Awesome Tensor Concatenation GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • torch/torch7الصورة الرمزية لـ torch

    torch/torch7

    9,127عرض على GitHub↗

    Torch7 is a scientific computing environment and tensor computation library used for deep learning research and numerical analysis. It functions as a Lua-based framework for training neural networks and learning agents, providing a toolkit for implementing architectures and training through reinforcement learning algorithms. The project is distinguished by its tight integration with C, utilizing a binding layer to map high-level scripting to low-level C structures for direct memory access. It supports hardware-accelerated computation by offloading linear algebra and convolution operations to

    Joins multiple tensors along a specified dimension into a single larger tensor.

    C
    عرض على GitHub↗9,127
  • fastai/course-v3الصورة الرمزية لـ fastai

    fastai/course-v3

    4,914عرض على GitHub↗

    This repository is a comprehensive educational program and deep learning framework designed to teach practical deep learning using PyTorch through notebooks and code examples. It serves as a high-level library for building, training, and deploying neural networks, acting as a model training orchestrator that coordinates PyTorch models, optimizers, and loss functions. The project provides specialized toolkits for computer vision, natural language processing, and tabular data preprocessing. It distinguishes itself through advanced training controls such as discriminative learning rates, a two-w

    Includes utilities for joining tensors and arrays along specified dimensions into single sequences.

    Jupyter Notebookdata-sciencedeep-learningfastai
    عرض على GitHub↗4,914
  • pytorch/igniteالصورة الرمزية لـ pytorch

    pytorch/ignite

    4,770عرض على GitHub↗

    Ignite is a high-level training framework for PyTorch neural networks that serves as a training engine and deep learning lifecycle manager. It provides a structured system for organizing and automating training and evaluation loops, managing data iterators and triggering event handlers at specific milestones during the model training process. The project distinguishes itself through a comprehensive suite of tools for distributed training and model evaluation. It includes utilities for synchronizing gradients and coordinating collective communication across multiple GPUs or nodes, as well as a

    Collects tensors or strings from all participating processes and aggregates them into a single list.

    Python
    عرض على GitHub↗4,770
  • uxlfoundation/onednnالصورة الرمزية لـ uxlfoundation

    uxlfoundation/oneDNN

    4,009عرض على GitHub↗

    oneDNN is a library for deep learning acceleration that provides optimized building blocks for neural network training and inference. It manages tensor computation across CPU and GPU hardware, enabling the execution of high-performance primitives for model training and neural network inference optimization. The project distinguishes itself through hardware-specific kernel optimization and the use of just-in-time compilation to target specific processor instruction sets. It supports quantized neural network execution using both static and dynamic quantization to reduce memory usage and increas

    Joins multiple tensors along a specified dimension to create a single combined tensor.

    C++aarch64amxavx512
    عرض على GitHub↗4,009
  • lightly-ai/lightlyالصورة الرمزية لـ lightly-ai

    lightly-ai/lightly

    3,684عرض على GitHub↗

    Lightly is a self-supervised learning framework and computer vision data curation tool designed to manage large image datasets and train models on unlabeled data. It functions as a PyTorch vision library and dataset management SDK, providing tools to convert raw images into high-dimensional vectors for similarity search, visualization, and feature extraction. The project implements a variety of self-supervised architectures, including MoCo, SimCLR, VICReg, Barlow Twins, and masked image modeling. It distinguishes itself by combining these learning frameworks with active learning capabilities,

    Gathers and concatenates tensor instances from all active GPUs to synchronize loss and batch normalization.

    Pythoncomputer-visioncontrastive-learningcontributions-welcome
    عرض على GitHub↗3,684
  • fastai/course22الصورة الرمزية لـ fastai

    fastai/course22

    3,398عرض على GitHub↗

    This is a structured deep learning curriculum for programmers, delivered as a collection of Jupyter notebooks. It teaches the fundamentals of training neural networks for computer vision, natural language processing, tabular data analysis, and collaborative filtering using PyTorch and the fastai library. The course is designed to be hands-on, guiding learners from building a training loop from scratch to fine-tuning pretrained models for a variety of practical tasks. The curriculum distinguishes itself by covering the full lifecycle of a deep learning project, from data preparation and augmen

    Copies tensors from all processes onto a single process during distributed training.

    Jupyter Notebookdeep-learningfastaijupyter-notebooks
    عرض على GitHub↗3,398
  1. Home
  2. Data & Databases
  3. Data Processing Pipelines
  4. Data Transformation
  5. Array and Tensor Manipulation
  6. Tensor Transformations
  7. Tensor Concatenation

استكشف الوسوم الفرعية

  • Distributed Tensor GatheringCollecting and concatenating tensors across multiple GPU processes into a single unified tensor. **Distinct from Tensor Concatenation:** Specifically addresses the cross-process synchronization of tensors for distributed training, not just local concatenation.