├── Data Prep.ipynb ├── Modelling.ipynb ├── README.md ├── Visualizations.ipynb ├── gnn ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── data.cpython-39.pyc │ ├── estimator_fns.cpython-39.pyc │ ├── graph_utils.cpython-39.pyc │ ├── pytorch_model.cpython-39.pyc │ └── utils.cpython-39.pyc ├── data.py ├── estimator_fns.py ├── graph_utils.py ├── pytorch_model.py └── utils.py └── output ├── f1.jpg ├── loss.jpg ├── output.7z ├── pr_curve.png ├── results.txt └── roc_curve.png /Data Prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/Data Prep.ipynb -------------------------------------------------------------------------------- /Modelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/Modelling.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/README.md -------------------------------------------------------------------------------- /Visualizations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/Visualizations.ipynb -------------------------------------------------------------------------------- /gnn/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/.DS_Store -------------------------------------------------------------------------------- /gnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnn/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/__pycache__/data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/data.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/__pycache__/estimator_fns.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/estimator_fns.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/__pycache__/graph_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/graph_utils.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/__pycache__/pytorch_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/pytorch_model.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /gnn/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/data.py -------------------------------------------------------------------------------- /gnn/estimator_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/estimator_fns.py -------------------------------------------------------------------------------- /gnn/graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/graph_utils.py -------------------------------------------------------------------------------- /gnn/pytorch_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/pytorch_model.py -------------------------------------------------------------------------------- /gnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/gnn/utils.py -------------------------------------------------------------------------------- /output/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/f1.jpg -------------------------------------------------------------------------------- /output/loss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/loss.jpg -------------------------------------------------------------------------------- /output/output.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/output.7z -------------------------------------------------------------------------------- /output/pr_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/pr_curve.png -------------------------------------------------------------------------------- /output/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/results.txt -------------------------------------------------------------------------------- /output/roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skth5199/graph-based-fraud-detection/HEAD/output/roc_curve.png --------------------------------------------------------------------------------