Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ This repo has multiple modules for reference. Please refer to the README in each

## FinBench Datasets

### Dataset V0.1

Dataset V0.1 can be downloaded from [LDBC FinBench official website](https://ldbcouncil.org/benchmarks/finbench/).

### Dataset V0.2 (Working in Progress)

Warning: Dataset V0.2 is still under development, the schema does not fully comply with the implementation yet.

- [SF 0.1](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf0.1/sf0.1.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf0.1/sf0.1.tar.xz.md5sum)
- [SF 1](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf1/sf1.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf1/sf1.tar.xz.md5sum)
- [SF 3](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf3/sf3.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf3/sf3.tar.xz.md5sum)
Expand Down
85 changes: 73 additions & 12 deletions tugraph/data/import.conf
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,25 @@
"temporal": "timestamp",
"temporal_order": "DESC",
"properties": [
{
"name": "fromType",
"type": "STRING"
},
{
"name": "toType",
"type": "STRING"
},
{
"name": "timestamp",
"type": "INT64"
},
{
"name": "amount",
"type": "DOUBLE"
},
{
"name": "comment",
"type": "STRING"
}
]
},
Expand All @@ -279,6 +291,10 @@
{
"name": "amount",
"type": "DOUBLE"
},
{
"name": "comment",
"type": "STRING"
}
]
},
Expand All @@ -295,6 +311,10 @@
{
"name": "amount",
"type": "DOUBLE"
},
{
"name": "comment",
"type": "STRING"
}
]
},
Expand All @@ -308,6 +328,10 @@
"name": "timestamp",
"type": "INT64"
},
{
"name": "comment",
"type": "STRING"
},
{
"name": "location",
"type": "STRING",
Expand All @@ -328,6 +352,10 @@
{
"name": "ratio",
"type": "DOUBLE"
},
{
"name": "comment",
"type": "STRING"
}
]
},
Expand All @@ -341,6 +369,14 @@
"name": "timestamp",
"type": "INT64"
},
{
"name": "comment",
"type": "STRING"
},
{
"name": "loanAmount",
"type": "DOUBLE"
},
{
"name": "org",
"type": "STRING",
Expand All @@ -358,6 +394,10 @@
"name": "timestamp",
"type": "INT64"
},
{
"name": "comment",
"type": "STRING"
},
{
"name": "relation",
"type": "STRING",
Expand All @@ -369,6 +409,11 @@
"label": "own",
"type": "EDGE",
"properties": [
{
"name": "comment",
"type": "STRING",
"optional": true
},
{
"name": "timestamp",
"type": "INT64",
Expand Down Expand Up @@ -483,8 +528,11 @@
"columns": [
"SRC_ID",
"DST_ID",
"fromType",
"toType",
"amount",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -497,7 +545,8 @@
"SRC_ID",
"DST_ID",
"amount",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -510,7 +559,8 @@
"SRC_ID",
"DST_ID",
"amount",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -523,7 +573,8 @@
"SRC_ID",
"DST_ID",
"timestamp",
"location"
"location",
"comment"
]
},
{
Expand All @@ -536,7 +587,8 @@
"SRC_ID",
"DST_ID",
"ratio",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -549,7 +601,8 @@
"SRC_ID",
"DST_ID",
"ratio",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -561,8 +614,10 @@
"columns": [
"SRC_ID",
"DST_ID",
"loanAmount",
"timestamp",
"org"
"org",
"comment"
]
},
{
Expand All @@ -574,8 +629,10 @@
"columns": [
"SRC_ID",
"DST_ID",
"loanAmount",
"timestamp",
"org"
"org",
"comment"
]
},
{
Expand All @@ -588,7 +645,8 @@
"SRC_ID",
"DST_ID",
"timestamp",
"relation"
"relation",
"comment"
]
},
{
Expand All @@ -601,7 +659,8 @@
"SRC_ID",
"DST_ID",
"timestamp",
"relation"
"relation",
"comment"
]
},
{
Expand All @@ -613,7 +672,8 @@
"columns": [
"SRC_ID",
"DST_ID",
"timestamp"
"timestamp",
"comment"
]
},
{
Expand All @@ -625,7 +685,8 @@
"columns": [
"SRC_ID",
"DST_ID",
"timestamp"
"timestamp",
"comment"
]
}
]
Expand Down