+ GNN dataset
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- gnn_dataset/README.md +40 -0
- gnn_dataset/edges_all/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2015-08/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2015-09/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2015-10/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2015-11/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2015-12/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-01/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-02/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-03/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-04/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-05/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-06/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-07/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-08/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-09/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-10/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-11/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2016-12/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-01/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-02/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-03/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-04/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-05/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-06/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-07/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-08/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-09/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-10/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-11/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2017-12/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-01/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-02/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-03/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-04/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-05/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-06/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-07/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-08/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-09/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-10/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-11/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2018-12/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-01/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-02/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-03/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-04/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-05/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-06/edges.parquet +3 -0
- gnn_dataset/edges_by_month/month=2019-07/edges.parquet +3 -0
gnn_dataset/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 🕸 Ethereum Transaction Graph Dataset (GNN)
|
2 |
+
|
3 |
+
This dataset represents **Ethereum transactions as edges** between addresses.
|
4 |
+
It is designed for Graph Neural Networks (GNN), both **static embeddings** and **temporal graph learning**.
|
5 |
+
|
6 |
+
---
|
7 |
+
|
8 |
+
## 📑 Contents
|
9 |
+
|
10 |
+
- `edges_all/edges.parquet` — all transactions (full edge list).
|
11 |
+
- `edges_by_week/week=YYYY-Www/edges.parquet` — weekly slices.
|
12 |
+
- `edges_by_month/month=YYYY-MM/edges.parquet` — monthly slices.
|
13 |
+
- `meta/{week,month}_window_meta.parquet` — time window ranges and statistics.
|
14 |
+
- `labels/targets_global.parquet` — labeled addresses `(node_id, is_scam, is_contract, address)`.
|
15 |
+
- `mapping/address_id_map_labels.parquet` — `(address, node_id)` mapping.
|
16 |
+
- `targets/{week,month}_targets.parquet` — labeled nodes active in each window.
|
17 |
+
|
18 |
+
---
|
19 |
+
|
20 |
+
## 🔑 Edge Schema
|
21 |
+
|
22 |
+
| Field | Type | Units | Description |
|
23 |
+
|------------------|--------|----------|-------------|
|
24 |
+
| src_id | UInt64 | — | Source node ID (hash of lowercase Ethereum address). |
|
25 |
+
| dst_id | UInt64 | — | Destination node ID (hash of lowercase Ethereum address). |
|
26 |
+
| ts | Int64 | seconds | Unix timestamp of the transaction (UTC). |
|
27 |
+
| value_wei | STRING | wei | Transaction value in wei (exact decimal stored as string). |
|
28 |
+
| tx_fee_wei | STRING | wei | Transaction fee in wei (exact decimal stored as string). |
|
29 |
+
| block_number | Int64 | block | Ethereum block number of the transaction. |
|
30 |
+
| contract_creation| Bool | — | True if transaction created a smart contract. |
|
31 |
+
| tx_hash | STRING | hex | Unique transaction hash. |
|
32 |
+
|
33 |
+
---
|
34 |
+
|
35 |
+
## Notes
|
36 |
+
|
37 |
+
- Transactions are **not filtered**: all edges included.
|
38 |
+
- **Supervision**: loss computed only on labeled addresses.
|
39 |
+
- **Dynamic GNN**: use `edges_by_week/` or `edges_by_month/`.
|
40 |
+
- **Static embeddings**: use `edges_all/edges.parquet`.
|
gnn_dataset/edges_all/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bbe483a60b6587982e6d6c5013ca6e5c4bd786d54653911308d3c5bc597c99a6
|
3 |
+
size 21572870251
|
gnn_dataset/edges_by_month/month=2015-08/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52bd427d5c99d3aba031051fc4df587c25d837795f26ccbd90b85bb96338d266
|
3 |
+
size 1763081
|
gnn_dataset/edges_by_month/month=2015-09/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df46543781830621aeb5d6d4e0350adafe6b0fc4a5b23f5b91da93fa6006360b
|
3 |
+
size 2725028
|
gnn_dataset/edges_by_month/month=2015-10/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00ac58b9d1a9db140d1bc4a888de49f67a4c31f449a0f232fa0453ea7432c146
|
3 |
+
size 2924080
|
gnn_dataset/edges_by_month/month=2015-11/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a13f8c8ef074a05eab0c37e140ca611a9ff9858550556da302303950745091de
|
3 |
+
size 3227587
|
gnn_dataset/edges_by_month/month=2015-12/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d56b0d69276d4f43781024594b4bac2f563d48ba0d6fadb8348896662f19abad
|
3 |
+
size 3685392
|
gnn_dataset/edges_by_month/month=2016-01/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a3874de97911bd9520a38f8f07e84b5ef31a69ad82827afe8be9c908f3ce176
|
3 |
+
size 4920808
|
gnn_dataset/edges_by_month/month=2016-02/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1ef1b9d71927f58665a2924692dd538a98ceb8e16d056809dd3a9946e02af13
|
3 |
+
size 7142484
|
gnn_dataset/edges_by_month/month=2016-03/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e43d3ec8f573fdb3622792457b5f2ee50040229cd4272355f29dd18775a0528
|
3 |
+
size 11149168
|
gnn_dataset/edges_by_month/month=2016-04/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be76e469261dce3682505bde763712e709efe47585939436da0986ccb29b5262
|
3 |
+
size 11729422
|
gnn_dataset/edges_by_month/month=2016-05/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17abcf6d94494cad5a89284f2864c23dce26013657349a58c7d2de5817334b66
|
3 |
+
size 16510126
|
gnn_dataset/edges_by_month/month=2016-06/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c14677271d2b9908dff6f97f7abe9dfb69182d4a57dc70bc55e5682c740912c6
|
3 |
+
size 11474346
|
gnn_dataset/edges_by_month/month=2016-07/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6e91ba670943076bae93818ca76b7a248b774e1fc86c32e0ae79f6c560b5eb8
|
3 |
+
size 10551733
|
gnn_dataset/edges_by_month/month=2016-08/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6305011823e2b09f209a7a175265a24a2bee7f4476251e03a00a81c2d699884
|
3 |
+
size 7513549
|
gnn_dataset/edges_by_month/month=2016-09/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec02285747f4d513a1f4adadb1d3ccc948e4fe2704237431485d0680a8d0089f
|
3 |
+
size 7142056
|
gnn_dataset/edges_by_month/month=2016-10/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a33a7192a5628e7e977107dc83d73c62280228aa04ad40835676b3512c7a0d15
|
3 |
+
size 8664117
|
gnn_dataset/edges_by_month/month=2016-11/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9d4a7c683dd0a5286a92c4b183f66faa50da2a5a804edaab12953c4c4583df59
|
3 |
+
size 10965616
|
gnn_dataset/edges_by_month/month=2016-12/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:194c89063800d4399633c72ad6fb20c9512e1effd5ea670760192861c445b185
|
3 |
+
size 11597208
|
gnn_dataset/edges_by_month/month=2017-01/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:085b5e6ffc9e22836a63efc32b454b31a94b89743b8e271e48a8b96f45bbe2fb
|
3 |
+
size 12753345
|
gnn_dataset/edges_by_month/month=2017-02/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8bd8744da8e6fc2d0c30cc7b6a3b58f47808eb22f905bf6285de76542916e2e9
|
3 |
+
size 12653633
|
gnn_dataset/edges_by_month/month=2017-03/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91c123fc757c212ad32e09ba398af2d29ef44eeeb4f8d02a63ec03b5cb6b4037
|
3 |
+
size 21793140
|
gnn_dataset/edges_by_month/month=2017-04/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb428b2382875e4e59f821641386105987fd9882895d237b59c81a78b43e9a83
|
3 |
+
size 21616516
|
gnn_dataset/edges_by_month/month=2017-05/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:25cbca6963eddeec40d40a11853ef1ed347b60b951e2b4e0790c694226cee4d9
|
3 |
+
size 35203149
|
gnn_dataset/edges_by_month/month=2017-06/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0dfc6ff774be53fffc30b061befb26ebd03ea02126c812bdddd44cbf6e4d4955
|
3 |
+
size 51555840
|
gnn_dataset/edges_by_month/month=2017-07/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6c79126f6c4ccfa9c6062f532b486a73424c4560fa48f4304c8ed385e4e35b2a
|
3 |
+
size 46329039
|
gnn_dataset/edges_by_month/month=2017-08/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:40118ce9762f238c24cd787a52733326312b9a7aa2a5c24da2c43850b4c3ddf9
|
3 |
+
size 69679445
|
gnn_dataset/edges_by_month/month=2017-09/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e637c105c5e301df4bc4c2965e807128547c1978ad46b5b156674c7f329f8ebd
|
3 |
+
size 62995430
|
gnn_dataset/edges_by_month/month=2017-10/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ff256335c0ddc6922739fd9a5d156734439cc0dfa4c1fae1cd9791a6a6c424c
|
3 |
+
size 57580202
|
gnn_dataset/edges_by_month/month=2017-11/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:251fba853c1655d86076f094ef41def1c50d19a95bfd0cb2b298be9f14b3c108
|
3 |
+
size 81855986
|
gnn_dataset/edges_by_month/month=2017-12/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13027a13cf8e4aa804d2cfeca22912565ceec730eca04361543c785f45e97259
|
3 |
+
size 187207069
|
gnn_dataset/edges_by_month/month=2018-01/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:78e223a5a154c447bb822b8ff5907c3f74ae9f95a71a1f42ecd0127ebb785fda
|
3 |
+
size 277675520
|
gnn_dataset/edges_by_month/month=2018-02/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4bf6f92ba9b3c58e95a93f0ad6a315709bd8d5626fc663c022a4cba0f39c3cd6
|
3 |
+
size 135012854
|
gnn_dataset/edges_by_month/month=2018-03/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:42de90fa031f693c4037e76a174e1a823cbed0684b22cac2d4e75f0ccf0379af
|
3 |
+
size 120290944
|
gnn_dataset/edges_by_month/month=2018-04/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fc7b76047178e873390e8dcb341a9e35f91ca61c0897ebe67951baeaf7416b8
|
3 |
+
size 116453847
|
gnn_dataset/edges_by_month/month=2018-05/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e911626432d3ef2fa5d480138925a262972c86a67c7e216e32ef6a6ec1c39aec
|
3 |
+
size 171743994
|
gnn_dataset/edges_by_month/month=2018-06/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d930aee2ed6213f6d94c6283dcbceccf66b3ce9ea2bc4df267e299f256d057a
|
3 |
+
size 126616869
|
gnn_dataset/edges_by_month/month=2018-07/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2c8b799ceb3ee8ab2c1903a3d740d6494d84dfbf5d9e5cde412f7047712308a
|
3 |
+
size 105574258
|
gnn_dataset/edges_by_month/month=2018-08/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:767862a8e74329a86d64e367add17c08b06db99ce102df1ac7f0b6ef87397c00
|
3 |
+
size 103844582
|
gnn_dataset/edges_by_month/month=2018-09/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fef1e18908515fe9fba0ce91a173aee91d081e054f8889ca80fc8f95855d60bb
|
3 |
+
size 103083374
|
gnn_dataset/edges_by_month/month=2018-10/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca050a978df88230705a5cbbcd518a374dfc4ecabea94bf3483ae99ebcfbb7e1
|
3 |
+
size 103018783
|
gnn_dataset/edges_by_month/month=2018-11/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b7c9076e7fb625f80b237bd36bd93fb20a9deeab5f95d991591ce3b0b0d463f
|
3 |
+
size 99389767
|
gnn_dataset/edges_by_month/month=2018-12/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e0b62fb90c0ffe851e02444bf02ac02c2126a0993a4726e18ae53b373d58d7f
|
3 |
+
size 100679820
|
gnn_dataset/edges_by_month/month=2019-01/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb5e3c76fd139087496e02ce6f5f5b9b2177e3830eef5a9c482ccf02f31616bf
|
3 |
+
size 96173967
|
gnn_dataset/edges_by_month/month=2019-02/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0918138193e1882a317c21f138bc48f169f6191d9081d45428a5f2d02a7c5f68
|
3 |
+
size 72210554
|
gnn_dataset/edges_by_month/month=2019-03/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b86332f5d475afef4d9e7f023bceb1f3e8afe5e68749515db6ea7f5cc9ab2821
|
3 |
+
size 101746015
|
gnn_dataset/edges_by_month/month=2019-04/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bb56ef4b0aa7c3f8e1e8d4ad3ee53cfa80feef3176c7ad80fd85760fb4bcfda
|
3 |
+
size 121287882
|
gnn_dataset/edges_by_month/month=2019-05/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:33732b16ea7163348ae274e128b8c0ca27301c23565c2e0ae3725c13f62da638
|
3 |
+
size 125500325
|
gnn_dataset/edges_by_month/month=2019-06/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52053ffdecf7ba4cddaf1e10bd2714b19736e8bb0cc52ccc859350ccf18321f9
|
3 |
+
size 121682562
|
gnn_dataset/edges_by_month/month=2019-07/edges.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e47e3d5566d19b0fc7f6de997008ce463f86a72396b98c8255d4ba0e8ccf3a6e
|
3 |
+
size 93362290
|