awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

8 dépôts

Awesome GitHub RepositoriesN-Gram Co-occurrence Models

Models that capture semantic relationships by analyzing the frequency of adjacent word and character sequences.

Distinct from Skip-Gram Model Architectures: Covers general n-gram co-occurrence modeling beyond the specific skip-gram architecture

Explore 8 awesome GitHub repositories matching artificial intelligence & ml · N-Gram Co-occurrence Models. Refine with filters or upvote what's useful.

Awesome N-Gram Co-occurrence Models GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • facebookresearch/fasttextAvatar de facebookresearch

    facebookresearch/fastText

    26,543Voir sur GitHub↗

    fastText is a library and framework for word embedding generation, text vectorization, and supervised text classification. It provides tools to transform raw text into fixed-length vector representations and to train models that assign category labels to sentences or documents. The system utilizes subword-based vectorization and character n-gram embeddings, allowing it to generate meaningful vectors for words that were not present during training. To manage resource usage, it includes a quantized language model implementation that employs product quantization and dimensionality reduction to d

    Uses character n-gram embeddings to represent words and handle out-of-vocabulary terms.

    HTML
    Voir sur GitHub↗26,543
  • languagetool-org/languagetoolAvatar de languagetool-org

    languagetool-org/languagetool

    14,597Voir sur GitHub↗

    LanguageTool is a multilingual grammar and style checking engine designed to detect spelling, grammar, and writing errors across multiple languages. It provides automated proofreading capabilities that can be deployed as a self-hosted server or executed as a standalone local desktop application. The project distinguishes itself through a flexible rule development framework, allowing linguistic patterns to be defined via XML or implemented as custom Java classes. It utilizes n-gram frequency modeling for confused word detection and supports neural word embeddings to improve disambiguation betw

    Utilizes n-gram co-occurrence modeling to identify frequently confused words and rank spelling suggestions.

    Javagrammarnatural-languagenatural-language-processing
    Voir sur GitHub↗14,597
  • embedding/chinese-word-vectorsAvatar de Embedding

    Embedding/Chinese-Word-Vectors

    12,227Voir sur GitHub↗

    This project is a collection of pre-trained dense and sparse word vectors trained on diverse Chinese corpora. It serves as a library of linguistic representations and an NLP vector dataset designed to improve the accuracy of semantic and morphological analysis in text models. The collection provides corpus-specific representations and utilizes n-gram co-occurrence modeling to capture diverse linguistic patterns. It includes a hybrid of dense-sparse vectors to balance computational efficiency and semantic precision. The project covers semantic vector search and the development of Chinese natu

    Captures semantic relationships by analyzing the frequency of adjacent word fragments and character sequences during training.

    Pythonchinesechinese-word-segmentationembedding
    Voir sur GitHub↗12,227
  • joelgrus/data-science-from-scratchAvatar de joelgrus

    joelgrus/data-science-from-scratch

    9,636Voir sur GitHub↗

    This project is a collection of foundational machine learning algorithms and data science tools implemented in Python. It focuses on building the logic of these tools using basic programming primitives rather than relying on specialized libraries. The implementation covers several core domains, including a linear algebra library for matrix and vector operations, a statistical analysis toolkit for probability and hypothesis testing, and a framework for map-reduce distributed processing. It also includes implementations for natural language processing, graph theory for network analysis, and var

    Implements tools for generating contiguous word sequences based on n-gram sampling from source text.

    Python
    Voir sur GitHub↗9,636
  • sloria/textblobAvatar de sloria

    sloria/TextBlob

    9,516Voir sur GitHub↗

    TextBlob is a natural language processing library that provides a unified interface for common linguistic tasks. It operates as a wrapper-based API, simplifying the use of complex processing libraries by delegating core operations to specialized external frameworks. The project features a pluggable processing pipeline that allows for the integration of custom logic and alternative language engines. It supports the extension of processing models through plugins to add specific language support or custom data processing. The library covers a broad range of linguistic capabilities, including se

    Creates contiguous sequences of items from a text sample to analyze how words co-occur.

    Pythonnatural-language-processingnlpnltk
    Voir sur GitHub↗9,516
  • apache/hiveAvatar de apache

    apache/hive

    6,012Voir sur GitHub↗

    Apache Hive is a SQL-on-Hadoop data warehouse that enables querying and managing petabytes of data stored in distributed storage such as HDFS and cloud storage services. It provides a familiar SQL interface for batch analytics and reporting, supported by a core set of components including the HiveServer2 Thrift service for remote query execution, the Hive Metastore Service for central metadata management, the Hive ACID Transaction Engine for concurrent read-write operations, and the Hive LLAP Interactive Engine for low-latency analytical processing. The WebHCat REST API offers an HTTP interfac

    Finds the most frequent subsequences of length N from one or more text sequences using built-in UDAFs.

    Javaapachebig-datadatabase
    Voir sur GitHub↗6,012
  • karpathy/makemoreAvatar de karpathy

    karpathy/makemore

    3,672Voir sur GitHub↗

    makemore is a character-level language model and text generation engine. It serves as an educational implementation of the architecture and training processes used in large language models, built as a neural network using the PyTorch framework. The system demonstrates sequence prediction by learning the probability distributions of characters within a dataset to generate novel text strings. It implements this through a progression of techniques, including n-gram probability modeling and the use of automatic differentiation for weight optimization. The project covers the full machine learning

    Implements n-gram modeling to calculate the likelihood of subsequent characters based on preceding sequences.

    Python
    Voir sur GitHub↗3,672
  • amzxyz/rime_wanxiangAvatar de amzxyz

    amzxyz/rime_wanxiang

    2,863Voir sur GitHub↗

    This project is a CJK input method framework and configuration set designed for the Rime input engine. It provides a comprehensive system of schemas and dictionary packs to optimize Chinese character entry through pinyin and double-pinyin workflows. The framework is distinguished by its use of Lua-powered extensions that add dynamic utilities, such as inline mathematical calculators, automated timestamps, and text formatting, directly to the input interface. It also features refined word libraries and language models specifically tuned to improve prediction accuracy and first-choice hit rates

    Uses linguistic probability and collocation weights to prioritize candidate words based on preceding text.

    Luadictsrimerime-config
    Voir sur GitHub↗2,863
  1. Home
  2. Artificial Intelligence & ML
  3. Natural Language Processing
  4. Word Embeddings
  5. Skip-Gram Model Architectures
  6. N-Gram Co-occurrence Models

Explorer les sous-tags

  • Character N-GramsRepresentations of words as collections of overlapping character sequences to handle unknown words. **Distinct from N-Gram Co-occurrence Models:** Focuses on character-level n-grams for morphology, whereas the parent covers general word/character co-occurrence models.
  • N-Gram Generators1 sous-tagTools for creating contiguous sequences of items to analyze word co-occurrence. **Distinct from N-Gram Co-occurrence Models:** Distinct from Co-occurrence Models: focuses on the generation of the sequences rather than the statistical modeling of their relationships.