2 repos
Tensor Operations — Artificial Intelligence & Machine Learning
We curate 2 GitHub repositories matching artificial intelligence & machine learning · Tensor Operations. Refine with filters or upvote what's useful.
Tensor Operations — Artificial Intelligence & Machine Learning
- tensorflow/tensorflow
tensorflow/tensorflow
193,864TensorFlow is a comprehensive machine learning framework designed for the construction, training, and deployment of complex mathematical models. It utilizes a graph-based execution model that represents operations as directed acyclic graphs, enabling automatic differentiation and efficient parallel processing. The system provides high-level interfaces for defining neural network architectures, alongside a robust engine for managing multidimensional array structures and tensor mathematics. The framework distinguishes itself through a scalable distributed runtime that orchestrates workloads across heterogeneous hardware accelerators and decentralized network nodes. It employs deferred-execution symbolic graphs to perform graph-level optimizations, fusion, and ahead-of-time kernel compilation for specific hardware architectures. To ensure consistent performance across production environments, it features a standardized serialization format for model graphs and specialized tools for model serving, quantization, and compression. Beyond core training capabilities, the platform includes a high-throughput data ingestion engine that supports asynchronous, multi-threaded pipelines to prevent bottlenecks. It also offers extensive support for hardware abstraction, allowing for pluggable device integration and containerized acceleration. The ecosystem is rounded out by utilities for data validation, federated learning, and specialized modeling tasks, providing a complete toolchain for moving models from research into high-availability production environments.
C++deep-learningdeep-neural-networksdistributed - tensorflow/tfjs-examples
tensorflow/tfjs-examples
6,783This 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.
JavaScript