Automatic feature extraction and node role assignment for transfer learning on graphs
Project description
GraphRole
Automatic feature extraction and node role assignment for transfer learning on graphs; based on the ReFeX/RolX algorithms [1, 2] of Henderson, et al.
Overview
A fundamental problem for learning on graphs is extracting meaningful features. GraphRole
provides the RecursiveFeatureExtractor
class to automate this process by extracting recursive features capturing local and neighborhood ("regional") structural properties of a given graph. The specific implementation follows that of the ReFeX algorithm [1]. Node features (e.g., degree) and ego-net features (e.g., neighbors, number of internal vs. external edges) are extracted and then recursively aggregated over each node's neighbors' features until no additional information is encoded. As is shown in [1], these recursive, "regional" features facilitate node classification and perform quite well in transfer learning tasks.
GraphRole
also provides the RoleExtractor
class for node role assignment (a form of classification). Different nodes play different structural roles in a graph, and using recursive regional features, these roles can be identified and assigned to collections of nodes. As they are structural in nature, node roles differ from and are often more intuitive than the commonly used communities of nodes. In particular, roles can generalize across graphs whereas the notion of communities cannot [2]. Identification and assignment of node roles has been shown to facilitate many graph learning tasks.
Please see [1, 2] for more technical details.
Installation
This package is hosted on PyPI and can be installed via pip
:
$ pip install graphrole
To instead install from source:
$ git clone https://github.com/dkaslovsky/GraphRole.git
$ cd GraphRole
$ python setup.py install
Example
An example of GraphRole
usage is found in the examples
directory. The notebook
example.ipynb
(also available via nbviewer)
walks through feature extraction and role assignment for the well-known karate_club_graph
that is included with NetworkX
. Recursive features are extracted and used to learn role assignments for each node in the graph. The graph is shown above with each node colored corresponding to its role.
The extracted roles reflect structural properties of the graph at the node level. The nodes 0
and 33
(dark green) are central to the graph and are connected to many other nodes. Nodes 1
, 2
, 3
, and 32
are assigned to a similar role (red). In contrast, the roles colored as dark blue, light blue, and pink are found at the periphery of the graph. Notably, nodes need not be near one another to be assigned to the same role; instead nodes with similar properties are grouped together across the graph by their role assignments.
Although not reflected by this example, weighted and directed graphs are also supported and will yield weighted and directed variants of the extracted features.
Usage
For general usage, begin by importing the two feature and role extraction classes:
>>> from graphrole import RecursiveFeatureExtractor, RoleExtractor
Features are then extracted from a graph G
into a pandas.DataFrame
:
>>> feature_extractor = RecursiveFeatureExtractor(G)
>>> features = feature_extractor.extract_features()
Next, these features are used to learn roles. The number of roles is automatically determined by
a model selection procedure when n_roles=None
is passed to the RoleExtractor
class instance.
Alternatively, n_roles
can be set to a desired number of roles to be extracted.
>>> role_extractor = RoleExtractor(n_roles=None)
>>> role_extractor.extract_role_factors(features)
The role assignment for each node can be retrieved as a dictionary:
>>> role_extractor.roles
Alternatively, roles can be viewed as a soft assignment and a node's percent membership to each role
can be retrieved as a pandas.DataFrame
:
>>> role_extractor.role_percentage
Node Attributes as User-Defined Features
GraphRole
uses predefined structural graph properties for constructing features. It is also possible, as of version 1.1.0, to optionally include numeric node attributes as features. Providing a graph annotated with node attributes to GraphRole
allows a user to seed the recursive feature extraction process with user-defined features for each node.
Node attributes are enabled by passing attributes=True
as a kwarg to the RecursiveFeatureExtractor
:
>>> feature_extractor = RecursiveFeatureExtractor(G, attributes=True)
Providing this kwarg will automatically include all numeric node attributes as features to be included in the recursive feature calculations. Attributes with non-numeric values are always skipped (set to zero). Note that the feature names associated with node attributes will be the provided attribute name prepended with a prefix of attribute_
.
A list of attributes to be included for feature calculation instead of defaulting to all numeric attributes can be provided as:
>>> feature_extractor = RecursiveFeatureExtractor(G, attributes=True, attributes_include=['attr1', 'attr3'])
which will specify the use of only node attributes attr1
and attr3
.
A list of attributes to be excluded for feature calculation from the default of all numeric attributes can be provided as:
>>> feature_extractor = RecursiveFeatureExtractor(G, attributes=True, attributes_exclude=['attr2'])
which will specify the use of all node attributes other than attr2
.
For safety, the attributes_exclude
list takes priority over the attributes_include
list when conflicting specifications are provided.
Note: igraph
uses the attribute name
to store an identifier for all nodes and therefore the corresponding attribute value is never used for feature calculations. The attribute name
, even if overwritten by the user, is always skipped for igraph
graph instances.
Graph Interfaces
An interface for graph data structures is provided in the graphrole.graph.interface
module. Implementations for networkx
and igraph
are included.
The igraph
package is not included in requirements.txt
and thus will need to be manually installed
if desired. This is due to additional installation requirements beyond pip install python-igraph
; see
the igraph documentation for more details. Note that all tests
that require igraph
will be skipped if it is not installed.
To add an implementation of an additional graph library or data structure:
- Subclass the
BaseGraphInterface
ABC ingraphrole.graph.interface.base.py
and implement the required methods - Update the
INTERFACES
dict ingraphrole.graph.interface.__init__.py
to make the new subclass discoverable - Add tests by trivially implementing a
setUpClass()
classmethod of a subclass ofBaseGraphInterfaceTest.BaseGraphInterfaceTestCases
in thetests.test_graph.test_interface.py
module - If desired, a similar procedure allows the feature extraction tests to be run using the added interface
by again trivially implementing a
setUpClass()
classmethod of a subclass ofBaseRecursiveFeatureExtractorTest.TestCases
in thetests.test_features.test_extract.py
module
Future Development
Model explanation ("sense making") will be added to the RoleExtractor
class in a future release.
Tests
To run tests:
$ python -m unittest discover -v
As noted above, the tests for the igraph
interface are skipped when igraph
is not installed. Because this package is intentionally not required, the test coverage reported above is much lower than when igraph
is installed and its interface tests are not skipped (97% coverage to date).
References
[1] Henderson, et al. It’s Who You Know: Graph Mining Using Recursive Structural Features.
[2] Henderson, et al. RolX: Structural Role Extraction & Mining in Large Graphs.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file graphrole-1.1.1.tar.gz
.
File metadata
- Download URL: graphrole-1.1.1.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 578e3fdd4a84548d93d81dc7ac350dccd6b31ba592122691875ca36bdffde814 |
|
MD5 | 247ab9911e1aa71d9911350f415ace3e |
|
BLAKE2b-256 | 84d9608f5f46b54652a41cf7b38aaad784c369418c242f34826724636a121a55 |
File details
Details for the file graphrole-1.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: graphrole-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 68.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8f97bd8d96c6936391935047813417ddceb1a8a9f80083e4aeb328d8ca23e77 |
|
MD5 | 9f4de2ce1f8e9a3faf5c0be5feb16814 |
|
BLAKE2b-256 | a8e1f185324ecf9a64174f9d8198b63a3f6a5b4ecb21ba61cbf81708780509b4 |