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

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

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

6 个仓库

Awesome GitHub RepositoriesText Document Classification

Categorizing text-based documents into predefined classes using machine learning models.

Distinct from Machine Learning Classification: Specifically targets text-based document categorization, distinct from general machine learning classification or image-based document classification.

Explore 6 awesome GitHub repositories matching artificial intelligence & ml · Text Document Classification. Refine with filters or upvote what's useful.

Awesome Text Document Classification GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • rasbt/machine-learning-bookrasbt 的头像

    rasbt/machine-learning-book

    5,239在 GitHub 上查看↗

    This project is a comprehensive machine learning educational resource and tutorial series delivered as a collection of interactive Jupyter Notebooks. It provides practical Python implementations for the end-to-end machine learning lifecycle, covering supervised and unsupervised learning, deep learning, and reinforcement learning. The resource distinguishes itself by providing detailed implementation guides for complex architectures, including transformers, generative adversarial networks, and convolutional neural networks. It also features specialized courseware for developing reinforcement l

    Implements a logistic regression model to categorize text documents into predefined classes.

    Jupyter Notebook
    在 GitHub 上查看↗5,239
  • ownthink/knowledgegraphdataownthink 的头像

    ownthink/KnowledgeGraphData

    5,181在 GitHub 上查看↗

    KnowledgeGraphData 是一个结构化数据集与语料库集合,旨在为认知智能与人工智能系统提供基础层。它主要由大规模中文知识图谱数据集组成,包括用于驱动语义理解与自动问答的实体关系数据与 NLP 训练集。 该项目专注于海量实体-属性-值图谱的构建与导出,将知识组织为可移植的格式。它提供专门的领域划分,以针对医疗、军事与公共安全等专业领域定制信息检索。 该仓库涵盖了广泛的能力,包括中文自然语言处理、语义搜索与认知对话系统。其工具集涵盖了语言分析、实体提取、情感检测与文本摘要,以及用于网站审计的视觉内容分析与语音转文字转换。

    Categorizes text-based documents into predefined classes using machine learning models.

    Python
    在 GitHub 上查看↗5,181
  • macanv/bert-bilstm-crf-nermacanv 的头像

    macanv/BERT-BiLSTM-CRF-NER

    4,904在 GitHub 上查看↗

    该项目是一个命名实体识别框架和基于 TensorFlow 的自然语言处理模型。它提供了一个流水线,用于将预训练语言模型适配到特定的实体识别和文本分类任务。 该系统实现了序列标注架构,结合了基于 Transformer 的嵌入、双向序列建模和条件随机场(CRF)解码。它包括用于微调模型权重和训练网络以识别并分类非结构化文本中实体的工具。 该框架还包含一个客户端-服务器架构,通过 HTTP API 暴露训练好的模型。这允许通过网络接口进行远程推理、命名实体预测和文本分类。

    Assigns predefined labels to documents and text segments using a trained neural network.

    Python
    在 GitHub 上查看↗4,904
  • johnsnowlabs/spark-nlpJohnSnowLabs 的头像

    JohnSnowLabs/spark-nlp

    4,135在 GitHub 上查看↗

    Spark NLP 是一个构建在 Apache Spark 分布式计算框架之上的可扩展文本分析和机器学习工具包。它提供了一个多模态机器学习框架和一个用于对标注器进行排序以处理大规模语言数据的分布式流水线系统。该库包含一个用于生成上下文向量嵌入的 Transformer 文本处理器,以及一个用于管理大型语言模型的专用推理引擎。 该项目通过其在统一视觉-语言架构内处理异构数据类型(包括文本、音频和图像)的能力而脱颖而出。它支持高级生成式 AI 功能,如提示工程、具有约束 JSON 输出的结构化实体提取,以及消除网络延迟的本地推理。此外,它还提供跨文本和图像模态的跨语言翻译和零样本分类工具。 该框架涵盖了广泛的功能,包括用于实体识别和情感分析的监督模型训练,以及抽取式问答和文档摘要。它集成了向量数据库支持以进行相似性搜索,并为 GPU 加速和通过集中式注册表进行模型生命周期管理提供了基础设施。 该工具包允许通过公共仓库分发自定义模型和流水线,并支持通过 REST API 部署模型。

    Assigns predefined categories or labels to text documents based on their thematic patterns using machine learning.

    Scala
    在 GitHub 上查看↗4,135
  • facebookresearch/starspacefacebookresearch 的头像

    facebookresearch/Starspace

    3,954在 GitHub 上查看↗

    Starspace 是一个向量嵌入框架,旨在训练文本和图像的高维表示。它作为一种机器学习系统,用于神经排序、文本分类和知识图谱嵌入,将不同的对象类型映射到共享的数值空间中,以促进检索和预测任务。 该系统包含用于知识图谱补全和链接预测的专用工具,通过在多关系向量空间中表示实体及其关系来实现。它还通过将输入映射到目标标签或候选项目,提供了语义内容推荐和大规模文本分类功能。 该框架涵盖了广泛的功能领域,包括基于相似度的实体排序、从文档或 n-gram 中提取向量嵌入,以及使用基于随机游走的训练。为了管理大数据集,它集成了基于磁盘的压缩数据加载和负采样优化。

    Provides large-scale text document classification by mapping inputs to target labels in an embedding space.

    C++
    在 GitHub 上查看↗3,954
  • milanlproc/contextualized-topic-modelsMilaNLProc 的头像

    MilaNLProc/contextualized-topic-models

    1,271在 GitHub 上查看↗

    Contextualized topic modeling is a framework that integrates deep learning architectures with statistical word frequency distributions to extract coherent themes from large document collections. By combining pre-trained transformer-based embeddings with variational inference, the system identifies hidden patterns in text while maintaining the interpretability of traditional generative models. The library distinguishes itself by mapping diverse languages into a shared semantic space, enabling topic discovery and classification across multilingual datasets without requiring language-specific tr

    Supports interactive workflows where human feedback refines and labels document clusters during classification.

    Pythonbertembeddingsmultilingual-models
    在 GitHub 上查看↗1,271
  1. Home
  2. Artificial Intelligence & ML
  3. Machine Learning Classification
  4. Text Document Classification