Varun Hemachandran commited on
Commit
0cd38af
·
1 Parent(s): 2780724

Add dataset configuration files to enable dataset viewer

Browse files
Files changed (3) hide show
  1. dataset_dict.json +17 -0
  2. dataset_infos.json +35 -0
  3. default/train.json +6 -0
dataset_dict.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "default": {
3
+ "splits": {
4
+ "train": {
5
+ "name": "train",
6
+ "num_bytes": 0,
7
+ "num_examples": 0,
8
+ "dataset_name": "jfk-files-2025"
9
+ }
10
+ },
11
+ "download_checksums": {},
12
+ "download_size": 0,
13
+ "post_processing_size": null,
14
+ "dataset_size": 0,
15
+ "size_in_bytes": 0
16
+ }
17
+ }
dataset_infos.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "default": {
3
+ "description": "JFK Document Release 2025 - Collection of declassified documents related to the assassination of President John F. Kennedy",
4
+ "citation": "",
5
+ "homepage": "https://github.com/varun-heman/jfk-files-2025",
6
+ "license": "cc0-1.0",
7
+ "features": {
8
+ "file_name": {
9
+ "dtype": "string",
10
+ "_type": "Value"
11
+ },
12
+ "file_path": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "file_size": {
17
+ "dtype": "int64",
18
+ "_type": "Value"
19
+ },
20
+ "content_type": {
21
+ "dtype": "string",
22
+ "_type": "Value"
23
+ }
24
+ },
25
+ "supervised_keys": null,
26
+ "task_templates": [
27
+ {
28
+ "task": "document-question-answering",
29
+ "document_column": "file_path",
30
+ "question_column": null,
31
+ "answers_column": null
32
+ }
33
+ ]
34
+ }
35
+ }
default/train.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "file_name": ["104-10001-10001.pdf", "104-10002-10002.pdf", "104-10003-10003.pdf"],
3
+ "file_path": ["data/104-10001-10001.pdf", "data/104-10002-10002.pdf", "data/104-10003-10003.pdf"],
4
+ "file_size": [1024000, 2048000, 3072000],
5
+ "content_type": ["application/pdf", "application/pdf", "application/pdf"]
6
+ }