File size: 7,173 Bytes
2795186 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
Please cite our following papers if you use the data set for your publications.
BibTeX
@misc{AMLSim, author = {Toyotaro Suzumura and Hiroki Kanezashi}, title = {{Anti-Money Laundering Datasets}: {InPlusLab} Anti-Money Laundering DataDatasets}, howpublished = {\url{http://github.com/IBM/AMLSim/}}, year = 2021 }
EvolveGCN: Evolving Graph Convolutional Networks for Dynamic Graphs
https://arxiv.org/abs/1902.10191
Scalable Graph Learning for Anti-Money Laundering: A First Look
https://arxiv.org/abs/1812.00076
**Important: Please use the "master" branch for the practical use and testing. Other branches such as "new-schema" are outdated and unstable. [Wiki pages](https://github.com/IBM/AMLSim/wiki/) are still under construction and some of them do not catch up with the latest implementations. Please refer this README.md instead.**
# AMLSim
This project aims at building a multi-agent simulator of anti-money laundering - namely AML, and sharing synthetically generated data so that researchers can design and implement their new algorithms over the unified data.
# Dependencies
- Java 8 (Download and copy all jar files to `jars/` directory: See also `jars/README.md`)
- [MASON](https://cs.gmu.edu/~eclab/projects/mason/) version 20
- [Commons-Math](http://commons.apache.org/proper/commons-math/download_math.cgi) version 3.6.1
- [JSON in Java](https://jar-download.com/artifacts/org.json/json/20180813) version 20180813
- [WebGraph](http://webgraph.di.unimi.it/) version 3.6.1
- [DSI Utilities](http://dsiutils.di.unimi.it/) version 2.5.4
- [fastutil](http://fastutil.di.unimi.it/) version 8.2.3
- [Sux for Java](http://sux.di.unimi.it/) version 4.2.0
- [JSAP](http://www.martiansoftware.com/jsap/) version 2.1
- [SLF4J](https://www.slf4j.org/download.html) version 1.7.25
- [MySQL Connector for Java](https://dev.mysql.com/downloads/connector/j/5.1.html) version 5.1
- [JUnit5](https://search.maven.org/artifact/org.junit.platform/junit-platform-console-standalone/1.8.1/jar) version 5
- [Mockito Core](https://mvnrepository.com/artifact/org.mockito/mockito-core/4.0.0) version 4.0.0
- [Byte Buddy](https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.11.19) version 1.11.19
- [Byte Buddy Agent](https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy-agent/1.11.19) version 1.11.19
- [Objenesis](https://mvnrepository.com/artifact/org.objenesis/objenesis/3.2) version 3.2
- [Mockito Inline](https://mvnrepository.com/artifact/org.mockito/mockito-inline/4.0.0) version 4.0.0
- Python 3.7 (The following packages can be installed with `pip3 install -r requirements.txt`)
- numpy
- networkx==1.11 (We do not support version 2.* due to performance issues when creating a large graph)
- matplotlib==2.2.3 (The latest version is not compatible)
- pygraphviz
- powerlaw
- python-dateutil
# Directory Structure
See Wiki page [Directory Structure](https://github.com/IBM/AMLSim/wiki/Directory-Structure) for details.
NOTE: (October 2021): `bin/` folder has been renamed to `target/classes/`
# Introduction for Running AMLSim
See Wiki page [Quick Introduction to AMLSim](https://github.com/IBM/AMLSim/wiki/Quick-Introduction-to-AMLSim) for details.
## 1. Generate transaction CSV files from parameter files (Python)
Before running the Python script, please check and edit configuration file `conf.json`.
```json5
{
//...
"input": {
"directory": "paramFiles/1K", // Parameter directory
"schema": "schema.json", // Configuration file of output CSV schema
"accounts": "accounts.csv", // Account list parameter file
"alert_patterns": "alertPatterns.csv", // Alert list parameter file
"degree": "degree.csv", // Degree sequence parameter file
"transaction_type": "transactionType.csv", // Transaction type list file
"is_aggregated_accounts": true // Whether the account list represents aggregated (true) or raw (false) accounts
},
//...
}
```
Then, please run transaction graph generator script.
```bash
cd /path/to/AMLSim
python3 scripts/transaction_graph_generator.py conf.json
```
## 2. Build and launch the transaction simulator (Java)
Parameters for the simulator are defined at the "general" section of `conf.json`.
```json5
{
"general": {
"random_seed": 0, // Seed of random number
"simulation_name": "sample", // Simulation name (identifier)
"total_steps": 720, // Total simulation steps
"base_date": "2017-01-01" // The date corresponds to the step 0 (the beginning date of this simulation)
},
//...
}
```
Please compile Java files (if not yet) and launch the simulator.
```bash
sh scripts/build_AMLSim.sh
sh scripts/run_AMLSim.sh conf.json
```
## 2.b. Optional: Install and Use Maven as build system.
On Mac: `brew install maven`
If you already have a java installed, you can run `brew uninstall --ignore-dependencies openjdk` because brew installs that along with maven as a dependency.
If you choose to use Maven, you only manually need to fetch and place 1 jar file (MASON) in your `jars/` folder and then install it using the command shown below. If you do not use Maven, you will have to place all the dependency jar files listed above as dependencies in the `jars/` folder.
If using Maven, use the following commands to install the MASON dependency to your local Maven repository.
```
mvn install:install-file \
-Dfile=jars/mason.20.jar \
-DgroupId=mason \
-DartifactId=mason \
-Dversion=20 \
-Dpackaging=jar \
-DgeneratePom=true
```
Please compile Java files (if not yet) (will detect and use Maven) and launch the simulator.
```bash
sh scripts/build_AMLSim.sh
sh scripts/run_AMLSim.sh conf.json
```
## 3. Convert the raw transaction log file
The file names of the output data are defined at the "output" section of `conf.json`.
```json5
{
//...
"output": {
"directory": "outputs", // Output directory
"accounts": "accounts.csv", // Account list CSV
"transactions": "transactions.csv", // All transaction list CSV
"cash_transactions": "cash_tx.csv", // Cash transaction list CSV
"alert_members": "alert_accounts.csv", // Alerted account list CSV
"alert_transactions": "alert_transactions.csv", // Alerted transaction list CSV
"sar_accounts": "sar_accounts.csv", // SAR account list CSV
"party_individuals": "individuals-bulkload.csv",
"party_organizations": "organizations-bulkload.csv",
"account_mapping": "accountMapping.csv",
"resolved_entities": "resolvedentities.csv",
"transaction_log": "tx_log.csv",
"counter_log": "tx_count.csv",
"diameter_log": "diameter.csv"
},
//...
}
```
```bash
python3 scripts/convert_logs.py conf.json
```
## 4. Export statistical information of the output data to image files (optional)
```bash
python3 scripts/visualize/plot_distributions.py conf.json
```
## 5. Validate alert transaction subgraphs by comparison with the parameter file (optional)
```
python3 scripts/validation/validate_alerts.py conf.json
```
## 6. Remove all log and generated image files from `outputs` directory and a temporal directory
```bash
sh scripts/clean_logs.sh
```
|