-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
240 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.vscode | ||
.coverage | ||
site | ||
**/__pycache__/ | ||
**/checkpoint/ | ||
**/tmp_checkpoint/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# mercury-graph | ||
|
||
**`mercury-graph`** is a Python library that offers **graph analytics capabilities with a technology-agnostic API**, allowing users to use a curated range of performant and scalable algorithms and utilities regardless of the technologies employed (pure Python, [Numba](https://numba.pydata.org/)-compiled, [**networkx**](https://networkx.org/), distributed Spark [**graphframes**](https://graphframes.github.io/graphframes/docs/_site/index.html), etc.). | ||
|
||
Currently implemented **submodules** in `mercury.graph` include: | ||
|
||
- [**`mercury.graph.core`**](reference/core.md), with the main classes of the library that create and store the graphs' data and properties. | ||
|
||
- [**`mercury.graph.ml`**](reference/ml.md), with graph theory and machine learning algorithms such as Louvain community detection, spectral clustering, Markov chains, spreading activation-based diffusion models and graph random walkers. | ||
|
||
- [**`mercury.graph.embeddings`**](reference/embeddings.md), with classes that calculate graph embeddings in different ways, such as following the Node2Vec algorithm. | ||
|
||
- [**`mercury.graph.viz`**](reference/viz.md), with capabilities for graph visualization. | ||
|
||
|
||
## Python installation | ||
|
||
The easiest way to install `mercury-graph` is using `pip`: | ||
|
||
```bash | ||
pip install mercury-graph | ||
``` | ||
|
||
### Repository | ||
|
||
The website for the GitHub repository can be found [here](https://github.com/BBVA/mercury-graph). | ||
|
||
## Help and support | ||
|
||
It is a part of [**`mercury`**](https://www.bbvaaifactory.com/mercury/), a collaborative library developed by the **Advanced Analytics community at BBVA** that offers a broad range of tools to simplify and accelerate data science workflows. This library was originally an Inner Source project, but some components, like `mercury.graph`, have been released as Open Source. | ||
|
||
* [Mercury team](mailto:[email protected]?subject=[mercury-graph]) | ||
* [Issues](https://github.com/BBVA/mercury-graph/issues) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
::: mercury.graph.core.Graph | ||
|
||
::: mercury.graph.core.SparkInterface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
::: mercury.graph.embeddings.Embeddings | ||
|
||
::: mercury.graph.embeddings.GraphEmbedding | ||
|
||
::: mercury.graph.embeddings.SparkNode2Vec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
::: mercury.graph.ml.LouvainCommunities | ||
|
||
::: mercury.graph.ml.SparkRandomWalker | ||
|
||
::: mercury.graph.ml.SparkSpreadingActivation | ||
|
||
::: mercury.graph.ml.SpectralClustering | ||
|
||
::: mercury.graph.ml.Transition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
::: mercury.graph.viz.Moebius |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[data-md-color-scheme="default"] { | ||
--md-primary-fg-color: #1973b8; | ||
--md-primary-fg-color--light: #1973b8; | ||
--md-primary-fg-color--dark: #1973b8; | ||
} | ||
|
||
[data-md-color-scheme="slate"] { | ||
--md-primary-fg-color: #1973b8; | ||
--md-primary-fg-color--light: #1973b8; | ||
--md-primary-fg-color--dark: #1973b8; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.