awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

8 Repos

Awesome GitHub RepositoriesConstant Tensor Generation

Creating tensors filled with fixed values or samples from standard distributions.

Distinct from Tensor Transformations: Focuses on the initialization/generation of tensors rather than transforming existing ones.

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

Awesome Constant Tensor Generation GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • lyhue1991/eat_tensorflow2_in_30_daysAvatar von lyhue1991

    lyhue1991/eat_tensorflow2_in_30_days

    9,933Auf GitHub ansehen↗

    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

    Generates multi-dimensional arrays using constants, ranges, and linear spacing.

    Pythontensorflowtensorflow-examplestensorflow-tutorial
    Auf GitHub ansehen↗9,933
  • torch/torch7Avatar von torch

    torch/torch7

    9,127Auf GitHub ansehen↗

    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

    Generates tensors filled with ones, zeros, or random numbers from standard statistical distributions.

    C
    Auf GitHub ansehen↗9,127
  • tingsongyu/pytorch_tutorialAvatar von TingsongYu

    TingsongYu/PyTorch_Tutorial

    8,018Auf GitHub ansehen↗

    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

    Creates tensors filled with zeros, ones, or identity matrices for model initialization.

    Python
    Auf GitHub ansehen↗8,018
  • flashlight/flashlightAvatar von flashlight

    flashlight/flashlight

    5,443Auf GitHub ansehen↗

    Flashlight ist eine eigenständige C++-Bibliothek für maschinelles Lernen und Tensor-Berechnungen, die zum Erstellen und Trainieren neuronaler Netze verwendet wird. Sie fungiert als umfassendes Framework für neuronale Netze und Engine für automatische Differenzierung und bietet Werkzeuge zur Konstruktion von Berechnungsgraphen und zur Berechnung von Gradienten via Backpropagation. Das Projekt dient als Framework für verteiltes Training und nutzt All-Reduce-Operationen zur Synchronisation von Gradienten und Parametern über mehrere Rechenknoten und Geräte hinweg. Es zeichnet sich durch eine tiefe Integration von leistungsstarker Tensor-Manipulation, nativer Interoperabilität mit Gerätespeichern und einem System zur Synchronisation von Gewichten über verteilte Worker aus, um das Training großskaliger Modelle zu beschleunigen. Das Framework deckt eine breite Palette an Deep-Learning-Funktionen ab, einschließlich modularer Schichtkomposition für den Entwurf komplexer Architekturen wie Residual-Blöcke und rekurrente Zellen. Es bietet umfangreiche Datenmanagement-Utilities für Ingestion und Prefetching sowie Serialisierungssysteme zur Persistierung von Modellzuständen. Zusätzlich enthält es eine Suite an Überwachungs- und Observability-Tools zur Verfolgung von Trainingsmetriken und zur Messung von Sequenzfehlern. Die Bibliothek ist in C++ implementiert.

    Generates tensors containing identity matrices, sequential ranges, and evenly-spaced values.

    C++
    Auf GitHub ansehen↗5,443
  • nvlabs/stylegan2-ada-pytorchAvatar von NVlabs

    NVlabs/stylegan2-ada-pytorch

    4,477Auf GitHub ansehen↗

    Dieses Projekt ist eine PyTorch-Implementierung eines Generative Adversarial Network (GAN) für die hochauflösende Bildsynthese. Es bietet ein Bildsynthesemodell, das realistische Bilder aus latenten Vektoren und gelernten Klassenbedingungen erzeugt, unterstützt durch ein Tool zur Projektion in den latenten Raum, um numerische Vektoren für spezifische Zielbilder zu finden. Die Implementierung bietet adaptive Diskriminator-Augmentierung, eine Trainingstechnik zur Vermeidung von Overfitting bei begrenzten Bilddatensätzen. Zudem ist eine Evaluierungssuite für generative Modelle enthalten, die quantitative Metriken zur Messung der Wiedergabetreue und Vielfalt synthetisierter Bilder liefert. Die Bibliothek deckt umfassendere generative Workflows ab, einschließlich Bild-Style-Blending, Image-to-Latent-Projektion und das Training generativer Netzwerke auf benutzerdefinierten Datensätzen. Sie bietet zudem Dienstprogramme für die Vorbereitung von Bilddatensätzen und die Konvertierung von Netzwerkgewichten.

    Implements the generation of a fixed constant tensor to initialize the image synthesis process.

    Python
    Auf GitHub ansehen↗4,477
  • pytorch/executorchAvatar von pytorch

    pytorch/executorch

    4,296Auf GitHub ansehen↗

    ExecuTorch is a lightweight C++ runtime for deploying PyTorch models on mobile, embedded, and edge hardware. It provides an ahead-of-time compilation pipeline that exports, quantizes, and lowers model graphs into compact serialized programs, then executes them through a minimal runtime with hardware acceleration and on-device large language model inference capabilities. The project distinguishes itself through a hardware accelerator delegate system that partitions model subgraphs and offloads computation to specialized backends including NPUs, GPUs, and DSPs from Apple, Arm, Intel, MediaTek,

    Generates tensors filled with zeros, ones, constant values, or random values for model input preparation.

    Pythondeep-learningembeddedgpu
    Auf GitHub ansehen↗4,296
  • xtensor-stack/xtensorAvatar von xtensor-stack

    xtensor-stack/xtensor

    3,748Auf GitHub ansehen↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    Implements the creation of tensors filled with fixed constant values.

    C++c-plus-plus-14multidimensional-arraysnumpy
    Auf GitHub ansehen↗3,748
  • tensor-compiler/tacoAvatar von tensor-compiler

    tensor-compiler/taco

    1,360Auf GitHub ansehen↗

    Taco is a sparse tensor algebra compiler that translates high-level tensor index expressions into optimized machine code. It functions as a numerical code generator, producing specialized C kernels designed to execute complex multidimensional array operations efficiently on both CPU and GPU hardware. The project distinguishes itself by allowing users to define custom tensor storage layouts by composing dimension-level formats, such as dense or compressed structures, to match the specific sparsity patterns of their datasets. By analyzing the mathematical structure of tensor operations at compi

    Generates standalone C code for specific tensor algebra operations using a command-line interface.

    C++code-generatorlibrarylinear-algebra
    Auf GitHub ansehen↗1,360
  1. Home
  2. Data & Databases
  3. Data Processing Pipelines
  4. Data Transformation
  5. Array and Tensor Manipulation
  6. Tensor Transformations
  7. Constant Tensor Generation

Unter-Tags erkunden

  • Sequence Tensor GenerationCreation of one-dimensional tensors using arithmetic or logarithmic progressions. **Distinct from Constant Tensor Generation:** Distinct from constant generation by focusing on ranges and progressions rather than single values.
  • Standalone Kernel GeneratorsGenerates standalone C code for specific tensor algebra operations via command-line interfaces. **Distinct from Constant Tensor Generation:** Distinct from Constant Tensor Generation: focuses on generating executable C kernels rather than initializing tensor data values.
  • Tensor Range GenerationGenerating tensors using arithmetic or logarithmic progressions and linear spacing. **Distinct from Constant Tensor Generation:** Distinct from Constant Tensor Generation: focuses on ranges and progressions rather than fixed single values.