anony-mouse123 commited on
Commit
4745cdb
·
verified ·
1 Parent(s): 9a48d1a

addiing meta data file

Browse files
Files changed (1) hide show
  1. metadata.jsonld +77 -0
metadata.jsonld ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@language": "en",
4
+ "@vocab": "https://schema.org/",
5
+ "column": "cr:column",
6
+ "cr": "http://mlcommons.org/croissant/",
7
+ "data": { "@id": "cr:data", "@type": "@json" },
8
+ "dataType": { "@id": "cr:dataType", "@type": "@vocab" },
9
+ "extract": "cr:extract",
10
+ "field": "cr:field",
11
+ "fileObject": "cr:fileObject",
12
+ "fileSet": "cr:fileSet",
13
+ "format": "cr:format",
14
+ "includes": "cr:includes",
15
+ "jsonPath": "cr:jsonPath",
16
+ "recordSet": "cr:recordSet",
17
+ "source": "cr:source",
18
+ "sc": "https://schema.org/"
19
+ },
20
+ "@type": "sc:Dataset",
21
+ "name": "canarybench_enron",
22
+ "description": "Enron corpus subset for memorization auditing in CanaryBench.",
23
+ "conformsTo": "http://mlcommons.org/croissant/1.1",
24
+ "distribution": [
25
+ {
26
+ "@type": "cr:FileObject",
27
+ "@id": "data-file",
28
+ "name": "enron_test_jsonl",
29
+ "contentUrl": "https://huggingface.co/datasets/anony-mouse123/enron_data/resolve/main/test.jsonl",
30
+ "encodingFormat": "application/jsonl"
31
+ }
32
+ ],
33
+ "recordSet": [
34
+ {
35
+ "@type": "cr:RecordSet",
36
+ "@id": "enron-records",
37
+ "name": "enron_records",
38
+ "field": [
39
+ {
40
+ "@type": "cr:Field",
41
+ "@id": "enron-records/id",
42
+ "name": "id",
43
+ "dataType": "sc:Text",
44
+ "source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.id" } }
45
+ },
46
+ {
47
+ "@type": "cr:Field",
48
+ "@id": "enron-records/task",
49
+ "name": "task",
50
+ "dataType": "sc:Text",
51
+ "source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.task" } }
52
+ },
53
+ {
54
+ "@type": "cr:Field",
55
+ "@id": "enron-records/input",
56
+ "name": "input",
57
+ "dataType": "sc:Text",
58
+ "source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.input" } }
59
+ },
60
+ {
61
+ "@type": "cr:Field",
62
+ "@id": "enron-records/target",
63
+ "name": "target",
64
+ "dataType": "sc:Text",
65
+ "source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.target" } }
66
+ },
67
+ {
68
+ "@type": "cr:Field",
69
+ "@id": "enron-records/canary",
70
+ "name": "is_canary",
71
+ "dataType": "sc:Boolean",
72
+ "source": { "fileObject": { "@id": "data-file" }, "extract": { "jsonPath": "$.canary" } }
73
+ }
74
+ ]
75
+ }
76
+ ]
77
+ }