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

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

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

4 个仓库

Awesome GitHub RepositoriesNetwork Centrality Analyses

Applying graph theory metrics like clique centrality to identify influential nodes within a network.

Distinct from Centralization Patterns: Applies graph centrality to financial asset correlations rather than software architectural patterns

Explore 4 awesome GitHub repositories matching software engineering & architecture · Network Centrality Analyses. Refine with filters or upvote what's useful.

Awesome Network Centrality Analyses GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • joelgrus/data-science-from-scratchjoelgrus 的头像

    joelgrus/data-science-from-scratch

    9,636在 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 betweenness centrality to measure node influence via shortest path counts.

    Python
    在 GitHub 上查看↗9,636
  • je-suis-tm/quant-tradingje-suis-tm 的头像

    je-suis-tm/quant-trading

    9,190在 GitHub 上查看↗

    This project is a Python financial analytics framework and quantitative trading library. It provides a suite of mathematical tools for asset pricing, statistical market analysis, and the development of algorithmic trading strategies. The library is distinguished by its focus on currency and commodity correlation modeling, using regression and normalization to identify exchange rate drivers. It features a specialized portfolio optimization engine that applies graph theory, such as clique centrality and degeneracy ordering, alongside quadratic programming to balance risk-adjusted returns. The

    Uses clique centrality to identify influential and strongly correlated assets for concentrated investment sets.

    Pythonalgorithmic-tradingbollinger-bandscommodity-trading
    在 GitHub 上查看↗9,190
  • clips/patternclips 的头像

    clips/pattern

    8,852在 GitHub 上查看↗

    Pattern is a Python web mining library that functions as an HTML web scraper, a natural language processing toolkit, and a network analysis tool. It provides a mathematical framework for categorizing datasets through a vector space model library. The project enables the extraction of structured data from web services and the creation of searchable web content indexes. It processes unstructured text using sentiment analysis, part-of-speech tagging, and n-gram searching. The library covers machine learning classification through the training of models using perceptron algorithms and support ve

    Implements graph theory metrics like node centrality to identify influential entities within network maps.

    Python
    在 GitHub 上查看↗8,852
  • memgraph/memgraphmemgraph 的头像

    memgraph/memgraph

    4,163在 GitHub 上查看↗

    Memgraph is an in-memory, distributed graph database designed for high-performance labeled property graph management. It utilizes a Cypher query engine for declarative data retrieval and manipulation, providing a scalable knowledge graph backend that integrates vector search and graph traversals. The system distinguishes itself as a real-time graph analytics platform, employing native C++ and CUDA implementations to execute complex network analysis and dynamic community detection on streaming data. It provides specialized support for AI integration, including GraphRAG capabilities, the constr

    The product measures node importance by counting incoming and outgoing relationships.

    C++cyphergraphgraph-algorithms
    在 GitHub 上查看↗4,163
  1. Home
  2. Software Engineering & Architecture
  3. System Internals
  4. Centralization Patterns
  5. Network Centrality Analyses

探索子标签

  • Betweenness CentralityMeasures node influence based on the number of shortest paths passing through a node. **Distinct from Network Centrality Analyses:** Specializes the general network centrality analysis to the betweenness metric specifically.
  • Closeness CentralityMeasures node centrality based on the reciprocal sum of the shortest paths to all other nodes. **Distinct from Network Centrality Analyses:** Specializes the general network centrality analysis to the closeness metric specifically.
  • Degree CentralityMeasurement of node importance based on the count of connected edges. **Distinct from Network Centrality Analyses:** Distinct from Network Centrality Analyses: focuses specifically on degree-based importance rather than complex clique or betweenness metrics.
  • Katz CentralityA specific centrality measure that weights inbound paths and connection proximity to identify influence. **Distinct from Network Centrality Analyses:** Focuses specifically on the Katz centrality algorithm rather than general network centrality analysis.