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

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • joelgrus/data-science-from-scratchAvatar de joelgrus

    joelgrus/data-science-from-scratch

    9,636Ver en 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
    Ver en GitHub↗9,636
  • je-suis-tm/quant-tradingAvatar de je-suis-tm

    je-suis-tm/quant-trading

    9,190Ver en 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
    Ver en GitHub↗9,190
  • clips/patternAvatar de clips

    clips/pattern

    8,852Ver en 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
    Ver en GitHub↗8,852
  • memgraph/memgraphAvatar de memgraph

    memgraph/memgraph

    4,163Ver en 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
    Ver en GitHub↗4,163
  1. Home
  2. Software Engineering & Architecture
  3. System Internals
  4. Centralization Patterns
  5. Network Centrality Analyses

Explorar subetiquetas

  • 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.