There isnt a single row of data with malicious = true

#1
by ChristopherJabez - opened

Ran this sql query:
SELECT
contract_address,
contract_name,
malicious,
notes AS reason_for_malicious
FROM
train
WHERE
malicious = true
LIMIT 5;

and it returned zero results.

It must be a joke that the dataset called malicious_smart_contract_dataset doesnt have a single data point where the flag malicious = true

Forta Network org

Hi ChristopherJabez,
I think this is due to the online dataset view of HuggingFace. It only shows up to 70k rows, and the malicious=True are grouped together at the end. If you download the dataset, and look at the malicious column, there are 149 contracts flagged as malicious.

image.png

Sign up or log in to comment