You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
27
27
**Introduction**
28
28
29
-
**DGFraud** is a Graph Neural Network (GNN) based toolbox for fraud detection. It integrates the implementation & comparison of state-of-the-art GNN-based fraud detection models. It also includes several utility functions such as graph preprocessing, graph sampling, and performance evaluation. The introduction of implemented models can be found [here](#implemented-models). <!-- (Add introduction blogs links). -->
29
+
**DGFraud** is a Graph Neural Network (GNN) based toolbox for fraud detection. It integrates the implementation & comparison of state-of-the-art GNN-based fraud detection models. The introduction of implemented models can be found [here](#implemented-models). <!-- (Add introduction blogs links). -->
30
30
31
31
We welcome contributions on adding new fraud detectors and extending the features of the toolbox. Some of the planned features are listed in [TODO list](#todo-list).
32
32
@@ -41,6 +41,7 @@ If you use the toolbox in your project, please cite the [paper](https://arxiv.or
41
41
```
42
42
43
43
**Useful Resources**
44
+
-[UGFraud: An Unsupervised Graph-based Toolbox for Fraud Detection](https://github.com/safe-graph/UGFraud)
44
45
-[Graph-based Fraud Detection Paper List](https://github.com/safe-graph/graph-fraud-detection-papers)
|**GraphSAGE**|[Inductive Representation Learning on Large Graphs](https://arxiv.org/pdf/1706.02216.pdf)| NIPS 2017 |[BibTex](https://github.com/safe-graph/DGFraud/blob/master/reference/graphsage.txt)|
146
147
|**GraphConsis**|[Alleviating the Inconsistency Problem of Applying Graph Neural Network to Fraud Detection](https://arxiv.org/pdf/2005.00625.pdf)| SIGIR 2020 |[BibTex](https://github.com/safe-graph/DGFraud/blob/master/reference/graphconsis.txt)|
147
-
<!--| **HACUD** | [Cash-Out User Detection Based on Attributed Heterogeneous Information Network with a Hierarchical Attention Mechanism](https://aaai.org/ojs/index.php/AAAI/article/view/3884) | AAAI 2019 | Bibtex |-->
148
+
|**HACUD**|[Cash-Out User Detection Based on Attributed Heterogeneous Information Network with a Hierarchical Attention Mechanism](https://aaai.org/ojs/index.php/AAAI/article/view/3884)| AAAI 2019 |[BibTex](https://github.com/safe-graph/DGFraud/blob/master/reference/hacud.txt)|
148
149
149
150
150
151
## Model Comparison
@@ -158,7 +159,7 @@ The repository is organized as follows:
@@ -170,8 +171,8 @@ The repository is organized as follows:
170
171
- Benchmarking SOTA models
171
172
- Scalable implementation
172
173
- TensorFlow 2.0+ implementation
173
-
- Pytorch version
174
+
- Pytorch implementation
174
175
175
176
## How to Contribute
176
-
You are welcomed to contribute to this open-source toolbox. The detailed instructions will be released soon. Currently, you can create issues or send email to [ytongdou@gmail.com](mailto:ytongdou@gmail.com) for inquiry.
177
+
You are welcomed to contribute to this open-source toolbox. The detailed instructions will be released soon. Currently, you can create issues or send email to [bdscsafegraph@gmail.com](mailto:bdscsafegraph@gmail.com) for inquiry.
Copy file name to clipboardExpand all lines: algorithms/GraphSage/README.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,18 @@
1
-
# Description
1
+
# GraphSAGE
2
+
3
+
## Paper
4
+
The GraphSAGE model is proposed by the [paper](http://papers.nips.cc/paper/6703-inductive-representation-learning-on-large-graphs.pdf) below:
5
+
```bibtex
6
+
@inproceedings{hamilton2017inductive,
7
+
title={Inductive representation learning on large graphs},
8
+
author={Hamilton, Will and Ying, Zhitao and Leskovec, Jure},
9
+
booktitle={Advances in neural information processing systems},
10
+
pages={1024--1034},
11
+
year={2017}
12
+
}
13
+
```
14
+
15
+
# Brief Introduction
2
16
We revise the original code of [graphsage](https://github.com/williamleif/GraphSAGE/tree/master/graphsage) so that it can load our data format and train the model.
3
17
4
18
# Run the code
@@ -10,4 +24,4 @@ line 28 in `utils.py` file
10
24
```python
11
25
rownetworks = [data['net_rur']]
12
26
```
13
-
- Before running the code, please remember unzip the given dataset.
27
+
- Before running the code, please remember unzip the given YelpChi dataset.
0 commit comments