Metadata-Version: 2.1
Name: opengsl
Version: 0.0.4
Summary: A comprehensive benchmark for Graph Structure Learning.
Home-page: https://github.com/OpenGSL/OpenGSL
Author: Zhiyao Zhou, Sheng Zhou, Bochao Mao, Xuanyi Zhou
Keywords: AI,GNN,graph structure learning
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
License-File: LICENSE

# OpenGSL
OpenGSL is a benchmark for Graph Structure Learning.

## Overview of the benchmark
OpenGSL provides a fair and comprehensive platform to evaluate existing GSL works and facilitate future GSL researches.


## Installation

**Using Pip**
``` bash
pip install opengsl
```

**Installation for local development:**
``` bash
git clone https://github.com/OpenGSL/OpenGSL
cd opengsl
pip install -e .
```

## Quick Start
Following example shows you how to perform GCN on Cora dataset. 

#### Step 1: Load configuration
``` python
import opengsl
conf = opengsl.load_conf(method="gcn", dataset="cora")
```

#### Step 2: Load data
``` python
dataset = opengsl.data.Dataset("cora", n_splits=1, feat_norm=conf.dataset['feat_norm'])
```

#### Step 3: Build Model
``` python
solver = opengsl.method.gcn(conf,dataset)
```

#### Step 4: Training and Evaluation
``` python
exp = opengsl.ExpManager(solver, n_runs = 10)
exp.run()
```

## Add method
if you want to use your own method, see `example.py` for detail.




## How to Contribute
As an active research topic, we are witenessing the rapid development of GSL methods.
Hence, this project will be frequently updated and we welcome everyone interested in this topic to contribute! 

Please feel free to send PR or issue!

## Citation
Our paper on this benchmark will be released soon!

If you use our benchmark in your works, we would appreciate citations to the paper:

```bibtex
@article{zhou2023opengsl,
  title={OpenGSL: A Comprehensive Benchmark for Graph Structure Learning},
  author={Zhiyao Zhou, Sheng Zhou, Bochao Mao, Xuanyi Zhou, Jiawei Chen, Qiaoyu Tan, Daochen Zha, Can Wang, Yan Feng, Chun Chen},
  journal={arXiv preprint},
  year={2023}
}
```
