File size: 2,033 Bytes
4745cdb c09ac3b 4745cdb c09ac3b 4745cdb c09ac3b 4745cdb c09ac3b 4745cdb | 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 | {
"@context": {
"@language": "en",
"@vocab": "https://schema.org/",
"column": "cr:column",
"cr": "http://mlcommons.org/croissant/",
"data": { "@id": "cr:data", "@type": "@json" },
"dataType": { "@id": "cr:dataType", "@type": "@vocab" },
"extract": "cr:extract",
"field": "cr:field",
"fileObject": "cr:fileObject",
"fileSet": "cr:fileSet",
"format": "cr:format",
"includes": "cr:includes",
"jsonPath": "cr:jsonPath",
"recordSet": "cr:recordSet",
"source": "cr:source",
"sc": "https://schema.org/"
},
"@type": "sc:Dataset",
"name": "enron_data",
"description": "Memorization auditing dataset for CanaryBench, featuring Enron email sequences and PII canaries.",
"conformsTo": "http://mlcommons.org/croissant/1.1",
"url": "https://huggingface.co/datasets/anony-mouse123/enron_data",
"distribution": [
{
"@type": "cr:FileObject",
"@id": "data-file",
"name": "enron_jsonl",
"contentUrl": "https://huggingface.co/datasets/anony-mouse123/enron_data/resolve/main/test.jsonl",
"encodingFormat": "application/jsonl"
}
],
"recordSet": [
{
"@type": "cr:RecordSet",
"@id": "enron-records",
"name": "enron_records",
"field": [
{
"@type": "cr:Field",
"@id": "enron-records/id",
"name": "id",
"dataType": "sc:Text",
"source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.id" } }
},
{
"@type": "cr:Field",
"@id": "enron-records/target",
"name": "target",
"dataType": "sc:Text",
"source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.target" } }
},
{
"@type": "cr:Field",
"@id": "enron-records/canary",
"name": "canary",
"dataType": "sc:Boolean",
"source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.canary" } }
}
]
}
]
} |