Datasets:
Update README: add multiscript/non_tibetan to subclass table, total 480 images
Browse files
README.md
CHANGED
|
@@ -29,10 +29,12 @@ dataset_info:
|
|
| 29 |
'3': Pedri
|
| 30 |
'4': Tsugdri
|
| 31 |
'5': Uchen
|
|
|
|
|
|
|
| 32 |
splits:
|
| 33 |
- name: test
|
| 34 |
num_bytes: 0
|
| 35 |
-
num_examples:
|
| 36 |
download_size: 0
|
| 37 |
dataset_size: 0
|
| 38 |
configs:
|
|
@@ -55,8 +57,10 @@ All images are BDRC manuscript page scans, balanced by subclass.
|
|
| 55 |
| **Pedri** | 60 | Peri: 44, Petsuk: 16 |
|
| 56 |
| **Tsugdri** | 60 | Trinyig: 36, Tsugchung: 14, Tsugthung: 10 |
|
| 57 |
| **Uchen** | 60 | Uchen SugDring: 53, Uchen SugRing: 3, Uchen Sugthung: 4 |
|
|
|
|
|
|
|
| 58 |
|
| 59 |
-
**Total:
|
| 60 |
|
| 61 |
## Parquet schema
|
| 62 |
|
|
@@ -64,7 +68,7 @@ All images are BDRC manuscript page scans, balanced by subclass.
|
|
| 64 |
|--------|------|-------------|
|
| 65 |
| `id` | string | BDRC page id (e.g. `W00KG09391-I00KG093950005`) |
|
| 66 |
| `image_bytes` | binary | JPEG/PNG page image |
|
| 67 |
-
| `script` | string | One of: `Danyig`, `Druma`, `Gyuyig`, `Pedri`, `Tsugdri`, `Uchen` |
|
| 68 |
|
| 69 |
## Load in Python
|
| 70 |
|
|
@@ -72,7 +76,7 @@ All images are BDRC manuscript page scans, balanced by subclass.
|
|
| 72 |
from datasets import load_dataset
|
| 73 |
|
| 74 |
ds = load_dataset("BDRC/tibetan-script-classification-benchmark", split="test")
|
| 75 |
-
print(len(ds)) #
|
| 76 |
|
| 77 |
row = ds[0]
|
| 78 |
# row["id"], row["image_bytes"], row["script"]
|
|
|
|
| 29 |
'3': Pedri
|
| 30 |
'4': Tsugdri
|
| 31 |
'5': Uchen
|
| 32 |
+
'6': multiscript
|
| 33 |
+
'7': non_tibetan
|
| 34 |
splits:
|
| 35 |
- name: test
|
| 36 |
num_bytes: 0
|
| 37 |
+
num_examples: 480
|
| 38 |
download_size: 0
|
| 39 |
dataset_size: 0
|
| 40 |
configs:
|
|
|
|
| 57 |
| **Pedri** | 60 | Peri: 44, Petsuk: 16 |
|
| 58 |
| **Tsugdri** | 60 | Trinyig: 36, Tsugchung: 14, Tsugthung: 10 |
|
| 59 |
| **Uchen** | 60 | Uchen SugDring: 53, Uchen SugRing: 3, Uchen Sugthung: 4 |
|
| 60 |
+
| **multiscript** | 60 | Multi-Scripts: 60 |
|
| 61 |
+
| **non_tibetan** | 60 | Other: 60 |
|
| 62 |
|
| 63 |
+
**Total: 480 images** across 8 classes.
|
| 64 |
|
| 65 |
## Parquet schema
|
| 66 |
|
|
|
|
| 68 |
|--------|------|-------------|
|
| 69 |
| `id` | string | BDRC page id (e.g. `W00KG09391-I00KG093950005`) |
|
| 70 |
| `image_bytes` | binary | JPEG/PNG page image |
|
| 71 |
+
| `script` | string | One of: `Danyig`, `Druma`, `Gyuyig`, `Pedri`, `Tsugdri`, `Uchen`, `multiscript`, `non_tibetan` |
|
| 72 |
|
| 73 |
## Load in Python
|
| 74 |
|
|
|
|
| 76 |
from datasets import load_dataset
|
| 77 |
|
| 78 |
ds = load_dataset("BDRC/tibetan-script-classification-benchmark", split="test")
|
| 79 |
+
print(len(ds)) # 480
|
| 80 |
|
| 81 |
row = ds[0]
|
| 82 |
# row["id"], row["image_bytes"], row["script"]
|