Skip to content

Commit e7602e3

Browse files
committed
edit README file
1 parent 791a88e commit e7602e3

8 files changed

Lines changed: 37 additions & 96 deletions

README.md

Lines changed: 36 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
# Detecting Suspicious Activity in the NFT Ecosystem using Temporal Graph Analysis
22
This is the code for **[Detecting Suspicious Activity in the NFT Ecosystem using Temporal Graph Analysis](https://github.com/slitiWassim/Detecting-Suspicious-Activity-in-the-NFT-Ecosystem)** .
33

4-
### [Project](https://slitiwassim.github.io/Drone-Guard/) | [Video](https://www.youtube.com/watch?v=c4U8tkQkX7g) | [Paper]()
4+
### [Project](https://slitiwassim.github.io/Detecting-Suspicious-Activity-in-the-NFT-Ecosystem/) | [Dataset]() | [Paper]()
55

6-
## Related Works
7-
> **ANDT**: See [ANDT : Anomaly detection in aerial videos with transformers ](https://github.com/Jin-Pu/Drone-Anomaly).
86

9-
> **HSTforU**: See [HSTforU: Anomaly Detection in Aerial and Ground-based Videos with Hierarchical Spatio-Temporal Transformer for U-net](https://github.com/vt-le/HSTforU/tree/main).
7+
## Framework Overview
108

11-
> **FastAno**: See [FastAno: Fast Anomaly Detection via Spatio-temporal Patch Transformation](https://github.com/codnjsqkr/FastAno_official).
12-
13-
<a href="static/videos/Bike_video.gif" target="_blank">
14-
<image style="border: 2px solid rgb(201, 196, 196);" src="static/videos/Bike_video.gif" width="100%">
15-
</a>
16-
17-
## Model
18-
19-
<a href="static/images/Model-Architecture.png" target="_blank">
20-
<image style="border: 2px solid rgb(201, 196, 196);" src="static/images/Model-Architecture.png" width="100%">
9+
<a href="static/images/framework_TKG.png" target="_blank">
10+
<image style="border: 2px solid rgb(201, 196, 196);" src="static/images/framework_TKG.png" width="100%">
2111
</a>
2212

2313

@@ -35,20 +25,24 @@ Clone this repo:
3525
git clone https://github.com/slitiWassim/Detecting-Suspicious-Activity-in-the-NFT-Ecosystem.git
3626
cd Detecting-Suspicious-Activity-in-the-NFT-Ecosystem/
3727

38-
We evaluate `Drone-Guard` on:
39-
| Dataset | Link |
40-
|--|---------------------------------------------------------------------------------------|
41-
| UCSD Ped2 | [![Google drive](https://badgen.net/static/Homepage/Ped2/blue)](http://www.svcl.ucsd.edu/projects/anomaly/dataset.html) |
42-
| CUHK Avenue | [![Google drive](https://badgen.net/badge/Homepage/Avenue/cyan)](http://www.cse.cuhk.edu.hk/leojia/projects/detectabnormal/dataset.html) |
43-
| ShanghaiTech | [![Google drive](https://badgen.net/badge/Homepage/ShanghaiTech/green?)](https://svip-lab.github.io/dataset/campus_dataset.html) |
44-
| Drone-Anomaly | [![Google drive](https://badgen.net/badge/Homepage/Drone-Anomaly/yellow)](https://github.com/Jin-Pu/Drone-Anomaly) |
28+
## Data Collection and Preparation
29+
30+
31+
32+
33+
34+
<a href="static/images/data_collection_preparation.png" target="_blank">
35+
<image style="border: 2px solid rgb(201, 196, 196);" src="static/images/data_collection_preparation.png" width="100%">
36+
</a>
37+
38+
4539

4640
A dataset is a directory with the following structure:
4741
```bash
4842
$ tree data
4943
ped2/avenue
5044
├── training
51-
│ └── frames
45+
│ └── mapping
5246
│ ├── ${video_1}$
5347
│ │ ├── 000.jpg
5448
│ │ ├── 001.jpg
@@ -58,72 +52,29 @@ A dataset is a directory with the following structure:
5852
│ │ └── ...
5953
│ └── ...
6054
└── testing
61-
└── frames
62-
├── ${video_1}$
63-
│ ├── 000.jpg
64-
│ ├── 001.jpg
65-
│ └── ...
66-
├── ${video_2}$
67-
│ ├── 000.jpg
68-
│ └── ...
69-
└── ...
70-
71-
72-
shanghaitech
73-
├── training
74-
│ └── frames
75-
│ ├── ${video_1}$
76-
│ │ ├── 000.jpg
77-
│ │ ├── 001.jpg
78-
│ │ └── ...
79-
│ ├── ${video_2}$
80-
│ │ ├── 00.jpg
81-
│ │ └── ...
82-
│ └── ...
83-
└── testing
84-
└── frames
85-
├── ${video_1}$
86-
│ ├── 000.jpg
87-
│ ├── 001.jpg
88-
│ └── ...
89-
├── ${video_2}$
90-
│ ├── 000.jpg
91-
│ └── ...
92-
└── ...
93-
94-
95-
drone
96-
├──bike
97-
│ ├──training
98-
│ │ └── frames
99-
│ │ ├── ${video_1}$
100-
│ │ │ ├── 0.jpg
101-
│ │ │ ├── 1.jpg
102-
│ │ │ └── ...
103-
│ │ ├── ${video_2}$
104-
│ │ │ ├── 00.jpg
105-
│ │ │ └── ...
106-
│ │ └── ...
107-
│ ├── testing
108-
│ │ └── frames
109-
│ │ ├── ${video_1}$
110-
│ │ │ ├── 000.jpg
111-
│ │ │ ├── 001.jpg
112-
│ │ │ └── ...
113-
│ │ ├── ${video_2}$
114-
│ │ │ ├── 000.jpg
115-
│ │ │ └── ...
116-
│ │ └── ...
117-
│ └── annotation
118-
│ ├── 01.npy
119-
│ ├── 02.npy
120-
│ └── ...
121-
├── highway
122-
│ ├── ...
123-
└── ...
12455

12556
```
12657

58+
### Data description
59+
| Descriptions | Statistics |
60+
|--|---------------------------------------------------------------------------------------|
61+
|Start date(dd-mm-yyyy,UTC) | 23-06-2017 21:05 |
62+
|End date (dd-mm-yyyy, UTC)| 22-12-2023 19:06 |
63+
|Number of NFT collections | 1,746,379 |
64+
|Number of NFT tokens |41,292,572 |
65+
|Number of account addresses| 7,062,831 |
66+
|Number of transactions |77,735,708 |
67+
|Chains | 10 |
68+
69+
70+
71+
## Temporal Cycles Detection
72+
73+
<a href="static/images/temporal_cycles.png" target="_blank">
74+
<image style="border: 2px solid rgb(201, 196, 196);" src="static/images/temporal_cycles.png" width="100%">
75+
</a>
76+
77+
12778
## Training
12879
To train `Drone-Guard` on a dataset, run:
12980
```bash

index.html

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,9 @@ <h1 class="title is-1 publication-title">Detecting Suspicious Activity in the NF
7777
<span>Paper</span>
7878
</a>
7979
</span>
80-
<!-- Video Link. -->
81-
<span class="link-block">
82-
<a href="https://www.youtube.com/watch?v=c4U8tkQkX7g"
83-
class="external-link button is-normal is-rounded is-dark">
84-
<span class="icon">
85-
<i class="fab fa-youtube"></i>
86-
</span>
87-
<span>Video</span>
88-
</a>
89-
</span>
9080
<!-- Code Link. -->
9181
<span class="link-block">
92-
<a href="https://github.com/slitiWassim/Drone-Guard"
82+
<a href="https://github.com/slitiWassim/Detecting-Suspicious-Activity-in-the-NFT-Ecosystem"
9383
class="external-link button is-normal is-rounded is-dark">
9484
<span class="icon">
9585
<i class="fab fa-github"></i>
311 KB
Loading

static/images/framework_TKG.png

309 KB
Loading

static/images/main.jpg

244 KB
Loading

static/images/temporal_cycles.png

83.4 KB
Loading
42.3 KB
Loading
44.2 KB
Loading

0 commit comments

Comments
 (0)