/defining_identifying_optimal_dimension

Defining and identifying the optimal embedding dimension of networks

Primary LanguagePython

defining_identifying_optimal_dimension

This repository provides a reference implementation of the following paper:

Basic Usage

Example

To run defining_identifying_optimal_dimension on the American college football network, execute the following command from the project home directory:
python2.7 define_identify.py --input graph/football

Options

You can check out the other options available to use with defining_identifying_optimal_dimension using:
python2.7 define_identify.py --help

Input

The supported input format is an edgelist: node1_id_int node2_id_int <weight_float, optional> The graph is assumed to be undirected and unweighted by default.

Output

The output is the optimal dimension identified by our algorithm.