add README.md
Browse files
README.md
CHANGED
|
@@ -85,9 +85,9 @@ picture is stored twice.
|
|
| 85 |
```python
|
| 86 |
from datasets import load_dataset
|
| 87 |
|
| 88 |
-
images = load_dataset("zidcenek/
|
| 89 |
-
items = load_dataset("zidcenek/
|
| 90 |
-
groups = load_dataset("zidcenek/
|
| 91 |
|
| 92 |
images[0]["image"] # PIL.Image, decoded lazily
|
| 93 |
images[0]["itemId"]
|
|
@@ -97,7 +97,7 @@ The image config is ~TODO GB, so stream it if you do not want a full local copy:
|
|
| 97 |
|
| 98 |
```python
|
| 99 |
images = load_dataset(
|
| 100 |
-
"zidcenek/
|
| 101 |
)
|
| 102 |
```
|
| 103 |
|
|
|
|
| 85 |
```python
|
| 86 |
from datasets import load_dataset
|
| 87 |
|
| 88 |
+
images = load_dataset("zidcenek/GLAMI-Entity-Matching-Dataset", "images", split="train")
|
| 89 |
+
items = load_dataset("zidcenek/GLAMI-Entity-Matching-Dataset", "items", split="train")
|
| 90 |
+
groups = load_dataset("zidcenek/GLAMI-Entity-Matching-Dataset", "groups", split="g5")
|
| 91 |
|
| 92 |
images[0]["image"] # PIL.Image, decoded lazily
|
| 93 |
images[0]["itemId"]
|
|
|
|
| 97 |
|
| 98 |
```python
|
| 99 |
images = load_dataset(
|
| 100 |
+
"zidcenek/GLAMI-Entity-Matching-Dataset", "images", split="train", streaming=True
|
| 101 |
)
|
| 102 |
```
|
| 103 |
|