Datasets:
Add cdli_inscriptions config (ATF transliterations for 5,663 tablets)
Browse files
README.md
CHANGED
|
@@ -44,6 +44,10 @@ configs:
|
|
| 44 |
data_files:
|
| 45 |
- split: all
|
| 46 |
path: data/cdli_catalog.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
---
|
| 48 |
|
| 49 |
# Persepolis
|
|
@@ -63,7 +67,8 @@ metadata.
|
|
| 63 |
| `wikimedia_images` | 5,767 | 4.6 GB images | photographs and drawings of the standing site |
|
| 64 |
| `smithsonian_finding_aid` | 1,624 | metadata only | Herzfeld FSA.A.06 catalog, Persepolis-tagged |
|
| 65 |
| `cdli_catalog` | 6,089 | metadata only | Pārśa-provenience cuneiform artifacts |
|
| 66 |
-
| `
|
|
|
|
| 67 |
|
| 68 |
## Loading
|
| 69 |
|
|
@@ -74,6 +79,7 @@ ds = load_dataset("phanerozoic/persepolis", split="all")
|
|
| 74 |
img = load_dataset("phanerozoic/persepolis", "wikimedia_images", split="all")
|
| 75 |
fa = load_dataset("phanerozoic/persepolis", "smithsonian_finding_aid", split="all")
|
| 76 |
cd = load_dataset("phanerozoic/persepolis", "cdli_catalog", split="all")
|
|
|
|
| 77 |
```
|
| 78 |
|
| 79 |
Image rows carry a `file_path` column pointing at the bundled file under
|
|
|
|
| 44 |
data_files:
|
| 45 |
- split: all
|
| 46 |
path: data/cdli_catalog.parquet
|
| 47 |
+
- config_name: cdli_inscriptions
|
| 48 |
+
data_files:
|
| 49 |
+
- split: all
|
| 50 |
+
path: data/cdli_inscriptions.parquet
|
| 51 |
---
|
| 52 |
|
| 53 |
# Persepolis
|
|
|
|
| 67 |
| `wikimedia_images` | 5,767 | 4.6 GB images | photographs and drawings of the standing site |
|
| 68 |
| `smithsonian_finding_aid` | 1,624 | metadata only | Herzfeld FSA.A.06 catalog, Persepolis-tagged |
|
| 69 |
| `cdli_catalog` | 6,089 | metadata only | Pārśa-provenience cuneiform artifacts |
|
| 70 |
+
| `cdli_inscriptions` | 5,663 | ATF text | C-ATF transliterations for the same artifacts |
|
| 71 |
+
| `default` | 13,480 | full manifest | union of the catalog configs (inscriptions are joinable on `cdli_inscriptions.artifact_id == cdli_catalog.source_id`) |
|
| 72 |
|
| 73 |
## Loading
|
| 74 |
|
|
|
|
| 79 |
img = load_dataset("phanerozoic/persepolis", "wikimedia_images", split="all")
|
| 80 |
fa = load_dataset("phanerozoic/persepolis", "smithsonian_finding_aid", split="all")
|
| 81 |
cd = load_dataset("phanerozoic/persepolis", "cdli_catalog", split="all")
|
| 82 |
+
ins = load_dataset("phanerozoic/persepolis", "cdli_inscriptions", split="all")
|
| 83 |
```
|
| 84 |
|
| 85 |
Image rows carry a `file_path` column pointing at the bundled file under
|