Commit
ยท
0a120a0
1
Parent(s):
07fa794
generated card
Browse files
README.md
CHANGED
@@ -51,36 +51,32 @@ dataset_info:
|
|
51 |
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
52 |
|
53 |
|
54 |
-
|
55 |
The first row of the dataset looks like
|
56 |
|
57 |
<!-- [[[cog
|
58 |
-
import
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
help = result.output.replace("Usage: root", "Usage: flyswot")
|
64 |
-
cog.out(
|
65 |
-
"```\n{}\n```".format(help)
|
66 |
-
)
|
67 |
]]] -->
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
86 |
<!-- [[[end]]] -->
|
|
|
51 |
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
52 |
|
53 |
|
|
|
54 |
The first row of the dataset looks like
|
55 |
|
56 |
<!-- [[[cog
|
57 |
+
from datasets import load_dataset
|
58 |
+
import json
|
59 |
+
ds = load_dataset("davanstrien/test_dataset_cogapp")
|
60 |
+
data = ds['train'][0]
|
61 |
+
cog.out(json.dumps({k: str(v) for k,v in data.items()}, indent=2, ensure_ascii=False))
|
|
|
|
|
|
|
|
|
62 |
]]] -->
|
63 |
+
{
|
64 |
+
"file": "pst_fenske_ver02_data_sn84026497_00280776129_1880042101_0834_002_6_96.jpg",
|
65 |
+
"image": "<PIL.JpegImagePlugin.JpegImageFile image mode=L size=388x395 at 0x11F715D90>",
|
66 |
+
"label": "0",
|
67 |
+
"pub_date": "1880-04-21 00:00:00",
|
68 |
+
"page_seq_num": "834",
|
69 |
+
"edition_seq_num": "1",
|
70 |
+
"batch": "pst_fenske_ver02",
|
71 |
+
"lccn": "sn84026497",
|
72 |
+
"box": "[0.649412214756012, 0.6045778393745422, 0.8002520799636841, 0.7152365446090698]",
|
73 |
+
"score": "0.9609346985816956",
|
74 |
+
"ocr": "H. II. IIASLKT & SOXN, Dealers in General Merchandise In New Store Room nt HASLET'S COS ITERS, 'JTionoMtii, ln. .Tau'y 1st, 1?0.",
|
75 |
+
"place_of_publication": "Tionesta, Pa.",
|
76 |
+
"geographic_coverage": "['Pennsylvania--Forest--Tionesta']",
|
77 |
+
"name": "The Forest Republican. [volume]",
|
78 |
+
"publisher": "Ed. W. Smiley",
|
79 |
+
"url": "https://news-navigator.labs.loc.gov/data/pst_fenske_ver02/data/sn84026497/00280776129/1880042101/0834/002_6_96.jpg",
|
80 |
+
"page_url": "https://chroniclingamerica.loc.gov/data/batches/pst_fenske_ver02/data/sn84026497/00280776129/1880042101/0834.jp2"
|
81 |
+
}
|
82 |
<!-- [[[end]]] -->
|