BlueGraph
Python framework for graph analytics and co-occurrence analysis
Install / Use
/learn @BlueBrain/BlueGraphREADME
========== Blue Graph
|Travis_badge| |docs|
Unifying Python framework for graph analytics and co-occurrence analysis.
.. image:: examples/figures/BBP_Blue_Graph_banner.jpg :alt: BlueGraph banner
About
BlueGraph is a Python framework that consolidates graph analytics capabilities from different graph processing backends. It provides the following set of interfaces:
- preprocessing and co-occurrence analysis API providing semantic property encoders and co-occurrence graph generators;
- graph analytics API providing interfaces for computing graph metrics, performing path search and community detection;
- representation learning API for applying various graph embedding techniques;
- representation learning downstream tasks API allowing the user to perform node classification, similarity queries, link prediction.
Using the built-in :code:PGFrame data structure (currently, pandas <https://pandas.pydata.org/>_-based implementation is available) for representing property graphs, it provides a backend-agnostic API supporting the following in-memory and persistent graph backends:
NetworkX <https://networkx.org/>_ (for the analytics API)graph-tool <https://graph-tool.skewed.de/>_ (for the analytics API)Neo4j <https://neo4j.com/>_ (for the analytics and representation learning API);StellarGraph <https://stellargraph.readthedocs.io/en/stable/>_ (for the representation learning API).gensim <https://radimrehurek.com/gensim/>_ (for the representation learning API).
This repository originated from the Blue Brain effort on building a COVID-19-related knowledge graph from the CORD-19 <https://www.kaggle.com/allen-institute-for-ai/CORD-19-research-challenge>_ dataset and analysing the generated graph to perform literature review of the role of glucose metabolism deregulations in the progression of COVID-19. For more details on how the knowledge graph is built, explored and analysed, see COVID-19 co-occurrence graph generation and analysis <https://github.com/BlueBrain/BlueGraph/tree/master/cord19kg#readme>__.
:code:bluegraph package
BlueGraph's API is built upon 4 main packages:
- :code:
bluegraph.coreproviding the exchange data structure for graph representation that serves as the input to graph processors based on different backends (:code:PGFrame), as well as basic interfaces for different graph analytics and embedding classes (:code:MetricProcessor, :code:PathFinder, :code:CommunityDetector, :code:GraphElementEmbedder, etc). - :code:
bluegraph.backendsis a package that collects implementation of various graph processing and analytics interfaces for different graph backends (for example, :code:NXPathFinderfor path search capabilities provided by NetworkX, :code:Neo4jCommunityDetectorfor community detection methods provided by Neo4j, etc). - :code:
bluegraph.preprocessis a package that contains utils for preprocessing property graphs (e.g. :code:SemanticPGEncoderfor encoding node/edge properties as numerical vectors, :code:CooccurrenceGeneratorfor generation and analysis of co-occurrence relations in PGFrames.) - :code:
bluegraph.downstreamis a package that provides a set of utils for various downstream tasks based on vector representations of graphs and graph elements (for example, :code:NodeSimilarityProcessorfor building and querying node similarity indices based on vector representation of nodes, :code:EdgePredictorfor predicting true and false edges of the graph based on vector representation of its nodes, :code:EmbeddingPipelinefor stacking pipelines of graph preprocessing, embedding, similarity index building, etc).
Main components of BlueGraph's API are illustrated in the following diagram:
.. image:: examples/figures/README_BlueGraph_components.png :alt: BlueGraph components
:code:cord19kg package
The :code:cord19kg package contains a set of tools for interactive exploration and analysis of the CORD-19 <https://www.kaggle.com/allen-institute-for-ai/CORD-19-research-challenge>_ dataset using the co-occurrence analysis of the extracted named entities. It includes data preparation and curation helpers, tools for generation and analysis of co-occurrence graphs. Moreover, it provides several interactive mini-applications (based on JupyterDash <https://github.com/plotly/jupyter-dash>_ and ipywidgets <https://ipywidgets.readthedocs.io/en/stable/>_) for Jupyter notebooks allowing the user to interactively perform:
- entity curation;
- graph visualization and analysis;
- dataset saving/loading from
Nexus <https://bluebrainnexus.io/>_.
:code:services package
Collects services included as a part of BlueGraph. Currently, only a mini-service for retrieving embedding vectors and similarity computation is included as a part of this repository (see embedder service specific README <https://github.com/BlueBrain/BlueGraph/blob/master/services/embedder/README.rst>_).
Installation
It is recommended to use a virtual environment such as venv <https://docs.python.org/3.6/library/venv.html>_ or conda environment <https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html>_.
.. _installing_deps:
Installing backend dependencies ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
If you want to use :code:graph-tool as a backend, you need to manually install the library (it cannot be simply installed by running :code:pip install), as it is not an ordinary Python library, but a wrapper around a C++ library (please, see graph-tool installation instructions <https://git.skewed.de/count0/graph-tool/-/wikis/installation-instructions#native-installation>_). Currently, BlueGraph supports :code:graph-tool<=2.37.
Similarly, if you want to use the :code:bluegraph.downstream.similarity module for building similarity indices (on embedded nodes, for example), you should install the Facebook :code:Faiss library separately. Please, see Faiss installation instructions <https://github.com/facebookresearch/faiss/blob/master/INSTALL.md>_ (:code:conda and :code:conda-forge installation available).
You can install both :code:graph-tool and the Facebook :code:Faiss library by creating a new environment with the right dependencies using :code:conda, as follows:
::
conda create --name <your_environment> -c conda-forge graph-tool==2.37 faiss python=<your_python> conda activate <your_environment>
The same holds for the Neo4j backend: in order to use it, the database should be installed and started (please, see Neo4j installation instructions <https://neo4j.com/docs/operations-manual/current/installation/>). Typically, the Neo4j-based interfaces provided by BlueGraph require the database uri (the bolt port), username and password to be provided. In addition, BlueGraph uses the Neo4j Graph Data Science (GDS) library, which should be installed separately for the database on which you would like to run the analytics (see installation instructions <https://neo4j.com/docs/graph-data-science/current/installation/>). Current supported Neo4j GDS version is :code:>=1.6.1.
Installing BlueGraph ^^^^^^^^^^^^^^^^^^^^^
BlueGraph supports Python versions >= 3.8 and pip >= 21.0.1. To update pip from the older versions run:
::
pip install --upgrade pip wheel setuptools
The stable version of BlueGraph can be installed from PyPI using:
::
pip install bluegraph
The development version of BlueGraph can be installed from the source by cloning the current repository as follows:
::
git clone https://github.com/BlueBrain/BlueGraph.git
cd BlueGraph
Basic version including only the NetworkX backend can be installed using:
::
pip install bluegraph
The prerequisites for using the :code:graph-tool backend can be found in 'Installing backend dependencies'. You can also install additional backends for Neo4j and StellarGraph by running the following:
::
pip install bluegraph[<backend>]
Where :code:<backend> has one of the following values :code:neo4j or :code:stellargraph.
Alternatively, a version supporting all the backends can be installed by running the following commands:
::
pip install bluegraph[all]
In order to use the :code:cord19kg package and its interactive Jupyter applications, run:
::
pip install bluegraph[cord19kg]
Getting started
The examples directory <https://github.com/BlueBrain/BlueGraph/tree/master/examples>_ contains a set of Jupyter notebooks providing tutorials and usecases for BlueGraph.
To get started with property graph data structure :code:PGFrame provided by BlueGraph, get an example of semantic property encoding, see the PGFrames and semantic encoding tutorial <https://github.com/BlueBrain/BlueGraph/blob/master/examples/notebooks/PGFrames%20and%20sematic%20encoding%20tutorial.ipynb>_ notebook.
To get familiar with the ideas behind the co-occurrence analysis and the graph analytics interface provided by BlueGraph we recommend to run the following example notebooks:
Literature exploration (PGFrames + in-memory analytics tutorial) <https://github.com/BlueBrain/BlueGraph/blob/master/examples/notebooks/Literature%20exploration%20(PGFrames%20%2B%20in-memory%20analytics%20tutorial).ipynb>_ illustrates how to use BlueGraphs's analytics API for in-memory graph backends based on the :code:NetworkXand the :code:graph-toollibraries.NASA keywords (PGFrames + Neo4j analytics tutorial) <https://github.com/BlueBrain/BlueGraph/blob/master/examples/notebooks/NASA%20keywords%20(PGFrames%20%2B%20Neo4j%20analytics%20tutorial).ipynb>_ illustrates how to use the Neo4j-based analytics API for persistent property graphs.
Embedding and downstream tasks tutorial <https://github.com/BlueBrain/BlueGraph/blob/master/examples/notebooks/Embedding%20and%20downstream%20tasks%20tutorial.ipynb>_ starts fr
Related Skills
feishu-drive
350.8k|
things-mac
350.8kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
350.8kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
postkit
PostgreSQL-native identity, configuration, metering, and job queues. SQL functions that work with any language or driver
