awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 个仓库

Awesome GitHub RepositoriesReusable Transform Pipelines

Creates reusable sequences of data processing steps that can encode, decode, and display transformed items.

Distinct from Data Transformation Pipelines: Distinct from Data Transformation Pipelines: focuses on creating reusable, composable pipelines with encode/decode/display capabilities, not just general data transformation.

Explore 5 awesome GitHub repositories matching development tools & productivity · Reusable Transform Pipelines. Refine with filters or upvote what's useful.

Awesome Reusable Transform Pipelines GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • apple/swift-nioapple 的头像

    apple/swift-nio

    8,477在 GitHub 上查看↗

    Swift NIO is a low-level, event-driven network framework for the Swift language. It serves as an asynchronous network protocol stack and I/O library designed to build high-performance network servers and clients that handle thousands of simultaneous connections. The framework functions as a high-concurrency network engine that dispatches events across multiple CPU cores. It enables the implementation of custom network protocols by processing raw bytes through a sequence of reusable data transformation handlers. The system provides capabilities for non-blocking I/O multiplexing, asynchronous

    Implements a pipeline of reusable handlers to process and transform inbound and outbound network data.

    Swiftasynchronous-ioevent-drivenhigh-performance
    在 GitHub 上查看↗8,477
  • gcanti/io-tsgcanti 的头像

    gcanti/io-ts

    6,813在 GitHub 上查看↗

    io-ts is a TypeScript runtime validation library that provides a composable codec system for decoding and encoding data at the boundaries of an application. It defines data schemas using structural types, where the shape of data determines its validity rather than nominal names, and produces runtime type guards from those definitions for efficient validation checks. The library is built around bidirectional codec mappings that combine decoding, encoding, and type checking into single reusable units. It supports a composable decoder pipeline where small validation steps can be chained together

    Builds decoders by chaining small, reusable validation steps that transform and check data incrementally.

    TypeScriptinferenceruntimetypes
    在 GitHub 上查看↗6,813
  • facebookresearch/mmffacebookresearch 的头像

    facebookresearch/mmf

    5,635在 GitHub 上查看↗

    MMF is a modular framework for building, training, and evaluating vision-and-language models. It provides a configuration-driven experiment system where model, dataset, and training parameters are defined through composable YAML files, alongside a curated model zoo of pretrained checkpoints for state-of-the-art multimodal architectures. The framework includes a multimodal dataset loader that downloads, processes, and batches vision-and-language data, and a vision-language model trainer supporting distributed training, mixed precision, and checkpoint-based resumption. The framework distinguish

    Transforms raw data into model-ready tensors using configurable processors with a common interface.

    Pythoncaptioningdeep-learningdialog
    在 GitHub 上查看↗5,635
  • lk-geimfari/mimesislk-geimfari 的头像

    lk-geimfari/mimesis

    4,818在 GitHub 上查看↗

    Mimesis 是一个 Python 合成数据生成器,用于为软件测试和开发创建逼真的虚假数据集和模拟数据。它作为一个基于模式的数据集生成器,能够生成结构化记录和关系数据集,同时也可作为生产数据脱敏工具,用合成值替换敏感信息。 该库的特色在于全面的多语言支持,允许生成特定区域的信息以模拟区域用户画像。它通过使用种子进行确定性数据生成来确保可重复性,从而在不同运行中创建一致的数据集。 该工具涵盖了广泛的合成内容,包括个人身份、财务数据、地理地址、网络元数据和科学序列。其功能扩展到通过条件逻辑和管道进行数据转换,以及与 DataFrame 和工厂模式的集成。它还支持生成标准化的系统代码、加密令牌和二进制文件模拟。 该框架可通过自定义数据提供程序和字段处理器进行扩展,允许用户集成特定领域的逻辑和外部 JSON 文件以进行专门的数据生成。

    Provides reusable sequences of data processing steps to encode, decode, and format generated synthetic values.

    Pythondatadataframedatascience
    在 GitHub 上查看↗4,818
  • fastai/course22fastai 的头像

    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

    Provides reusable data processing pipelines with encode, decode, and display capabilities for ML workflows.

    Jupyter Notebookdeep-learningfastaijupyter-notebooks
    在 GitHub 上查看↗3,398
  1. Home
  2. Development Tools & Productivity
  3. Data Transformation Pipelines
  4. Reusable Transform Pipelines

探索子标签

  • Network Event PipelinesSequences of reusable handlers that transform raw network events into high-level messages. **Distinct from Reusable Transform Pipelines:** Distinct from Reusable Transform Pipelines by focusing specifically on network event transformation rather than general data encoding/decoding.
  • Validation Decoder PipelinesBuilds decoders by chaining small, reusable validation steps that transform and check data incrementally. **Distinct from Reusable Transform Pipelines:** Distinct from Reusable Transform Pipelines: focuses on validation-specific decoding rather than general data transformation.