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

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

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

tensorflow/tfjs-examples

0
View on GitHub↗
6,783 نجوم·2,356 تفرعات·JavaScript·apache-2.0·8 مشاهداتjs.tensorflow.org↗

Tfjs Examples

This repository provides a collection of practical demonstrations and implementation guides for machine learning tasks using TensorFlow.js. It serves as a resource for developers to explore model architectures, training workflows, and data manipulation techniques across domains such as computer vision, natural language processing, and reinforcement learning.

The project covers the full lifecycle of machine learning development, including tensor-based mathematical operations, model construction via high-level layer APIs or low-level tensor logic, and model serialization for various storage mediums. It includes utilities for converting models into browser-compatible formats and provides infrastructure for executing these models across diverse backends, including WebGL, WebAssembly, and CPU-accelerated environments.

Documentation and examples are organized by task type, allowing users to browse implementations for regression, object detection, and generative models. The repository also includes deployment guides for hosting server-side applications on cloud platforms, alongside tools for managing tensor memory and asynchronous training processes.

Features

  • Manual Memory Management - Explicit disposal methods for layer and model objects enable developers to reclaim GPU-resident memory in environments lacking automatic garbage collection.
  • Core Model APIs - Low-level interfaces allow for precise weight initialization and the construction of custom model architectures using granular tensor operations.
  • Model Execution APIs - Specialized loading interfaces fetch and execute converted model assets, supporting both fixed-parameter graph structures and trainable layer-based models.
  • Asynchronous Training Utilities - Non-blocking training routines return promises to ensure the user interface remains responsive during intensive model optimization cycles.
  • Hardware-Accelerated Compute Backends - Native binary acceleration optimizes linear algebra computations on the CPU across multiple operating systems.
  • Model Inference and Serving - Backend-specific kernels register optimized logic for operations, enabling efficient memory access and dispatch during execution.
  • Tensor Memory Management - Automated cleanup scopes and manual disposal utilities provide granular control over tensor lifecycles, which is essential for stable GPU-based execution.

سجل النجوم

مخطط تاريخ النجوم لـ tensorflow/tfjs-examplesمخطط تاريخ النجوم لـ tensorflow/tfjs-examples

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Tfjs Examples

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Tfjs Examples.
  • answerdotai/gpu.cppالصورة الرمزية لـ AnswerDotAI

    AnswerDotAI/gpu.cpp

    3,981عرض على GitHub↗

    gpu.cpp is a lightweight C++ library for executing low-level general-purpose GPU computation across different hardware vendors and operating systems. It functions as a portable GPU wrapper, kernel orchestrator, and tensor management system using the WebGPU specification to abstract device initialization, buffer transfers, and compute shader dispatching. The library provides a framework for defining compute kernels from shader code and managing their asynchronous dispatch and synchronization. It enables the execution of cross-platform compute shaders and the orchestration of GPU tasks through

    C++
    عرض على GitHub↗3,981
  • iree-org/ireeالصورة الرمزية لـ iree-org

    iree-org/iree

    3,819عرض على GitHub↗

    IREE is an MLIR-based compiler toolchain and runtime designed to translate machine learning models from various frameworks into optimized binaries for execution across diverse hardware targets. It provides a unified pipeline to ingest models from PyTorch, TensorFlow, JAX, and ONNX, lowering them into a common intermediate representation for deployment on CPUs, GPUs, and bare-metal embedded systems. The project distinguishes itself through a bytecode virtual machine and a hardware abstraction layer that decouple high-level model logic from specific hardware instruction sets. It supports sophis

    C++compilercudajax
    عرض على GitHub↗3,819
  • sgl-project/sglangالصورة الرمزية لـ sgl-project

    sgl-project/sglang

    29,079عرض على GitHub↗

    Sglang is a high-performance inference engine and serving system designed for large language and multimodal models. It provides a programmable interface for orchestrating complex generation workflows, enabling developers to coordinate multi-turn dialogues, tool invocations, and reasoning chains through a domain-specific language. The platform is built to support production-scale deployments, offering an OpenAI-compatible API that allows for integration with existing application ecosystems. The system distinguishes itself through a disaggregated architecture that separates compute-intensive pr

    Pythonattentionblackwellcuda
    عرض على GitHub↗29,079
  • pytorch/executorchالصورة الرمزية لـ pytorch

    pytorch/executorch

    4,296عرض على GitHub↗

    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,

    Pythondeep-learningembeddedgpu
    عرض على GitHub↗4,296
عرض جميع البدائل الـ 30 لـ Tfjs Examples→

الأسئلة الشائعة

ما هي وظيفة tensorflow/tfjs-examples؟

This repository provides a collection of practical demonstrations and implementation guides for machine learning tasks using TensorFlow.js. It serves as a resource for developers to explore model architectures, training workflows, and data manipulation techniques across domains such as computer vision, natural language processing, and reinforcement learning.

ما هي الميزات الرئيسية لـ tensorflow/tfjs-examples؟

الميزات الرئيسية لـ tensorflow/tfjs-examples هي: Manual Memory Management, Core Model APIs, Model Execution APIs, Asynchronous Training Utilities, Hardware-Accelerated Compute Backends, Model Inference and Serving, Tensor Memory Management.

ما هي البدائل مفتوحة المصدر لـ tensorflow/tfjs-examples؟

تشمل البدائل مفتوحة المصدر لـ tensorflow/tfjs-examples: answerdotai/gpu.cpp — gpu.cpp is a lightweight C++ library for executing low-level general-purpose GPU computation across different hardware… iree-org/iree — IREE is an MLIR-based compiler toolchain and runtime designed to translate machine learning models from various… sgl-project/sglang — Sglang is a high-performance inference engine and serving system designed for large language and multimodal models. It… pytorch/executorch — ExecuTorch is a lightweight C++ runtime for deploying PyTorch models on mobile, embedded, and edge hardware. It… vllm-project/vllm — vLLM is a high-throughput inference engine designed for the efficient serving and execution of large language models.… seldonio/seldon-core — Seldon Core is a Kubernetes-based machine learning model server and MLOps inference framework. It functions as a…