-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0739e6
commit 3e502bf
Showing
13 changed files
with
83 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@inproceedings{DBLP:conf/aaai/HuZSZLQ19, | ||
author = {Binbin Hu and | ||
Zhiqiang Zhang and | ||
Chuan Shi and | ||
Jun Zhou and | ||
Xiaolong Li and | ||
Yuan Qi}, | ||
title = {Cash-Out User Detection Based on Attributed Heterogeneous Information | ||
Network with a Hierarchical Attention Mechanism}, | ||
booktitle = {The Thirty-Third AAAI Conference on Artificial Intelligence}, | ||
year = {2019} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,10 @@ | |
requirements = f.read().splitlines() | ||
|
||
setup(name='DGFraud', | ||
author="Yutong Deng, Yingtong Dou and UIC BDSC Lab", | ||
author_email="[email protected]", | ||
description='a GNN based toolbox for fraud detection in Tensorflow', | ||
version="0.1.0", | ||
author="Yutong Deng, Yingtong Dou, Hengrui Zhang, and UIC BDSC Lab", | ||
author_email="[email protected]", | ||
description='a GNN-based toolbox for fraud detection in Tensorflow', | ||
long_description=open("README.md", "r", encoding="utf-8").read(), | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/safe-graph/DGFraud', | ||
|
@@ -24,13 +25,14 @@ | |
install_requires=['numpy>=1.16.4', | ||
'tensorflow>=1.14.0,<2.0', | ||
'scipy>=1.2.1', | ||
'scikit_learn>=0.21rc2' | ||
'scikit_learn>=0.21rc2', | ||
'networkx<=1.11' | ||
], | ||
packages=find_packages(exclude=['test']), | ||
include_package_data=True, | ||
setup_requires=['setuptools>=38.6.0'], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Financial and Insurance Industry', | ||
'Intended Audience :: Science/Research', | ||
|