Datasets:
Vittorio Pippi
commited on
Commit
·
8dc8990
1
Parent(s):
313e268
Inital commit
Browse files- README.md +8 -13
- tars/000009.tar +2 -2
- tars/000010.tar +3 -0
- tars/000011.tar +3 -0
- tars/000012.tar +3 -0
- tars/000013.tar +3 -0
- tars/000014.tar +3 -0
- tars/000015.tar +3 -0
- tars/000016.tar +3 -0
- tars/000017.tar +3 -0
- tars/000018.tar +3 -0
- tars/000019.tar +3 -0
- tars/000020.tar +3 -0
- tars/000021.tar +3 -0
- tars/000022.tar +3 -0
- tars/000023.tar +3 -0
- tars/000024.tar +3 -0
- tars/000025.tar +3 -0
- tars/000026.tar +3 -0
- tars/000027.tar +3 -0
- tars/000028.tar +3 -0
- tars/000029.tar +3 -0
- tars/000030.tar +3 -0
- tars/000031.tar +3 -0
README.md
CHANGED
@@ -35,7 +35,7 @@ Alternatively, you can download a snapshot of the dataset in your Python code:
|
|
35 |
from huggingface_hub import snapshot_download
|
36 |
|
37 |
# Download the repository; the local path is returned
|
38 |
-
local_dir = snapshot_download(repo_id="blowing-up-groundhogs/font-square-v2")
|
39 |
print("Dataset downloaded to:", local_dir)
|
40 |
```
|
41 |
|
@@ -52,7 +52,7 @@ from pathlib import Path
|
|
52 |
|
53 |
# Assuming the dataset was downloaded to `local_dir` and tar shards are in the 'tars' folder
|
54 |
local_dir = "path/to/font-square-v2" # Update this path if necessary
|
55 |
-
tar_pattern = os.path.join(local_dir, "tars", "{000000..
|
56 |
|
57 |
# Create a WebDataset
|
58 |
dataset = wds.WebDataset(tar_pattern).decode("pil")
|
@@ -62,11 +62,8 @@ for sample in dataset:
|
|
62 |
# Access sample items
|
63 |
rgb_image = sample["rgb.png"] # RGB image (PIL image)
|
64 |
bw_image = sample["bw.png"] # BW image (PIL image)
|
65 |
-
|
66 |
-
|
67 |
-
# Convert JSON metadata to dictionary
|
68 |
-
import json
|
69 |
-
metadata = json.loads(metadata_bytes.decode("utf-8"))
|
70 |
print("Sample metadata:", metadata)
|
71 |
|
72 |
# Process the images as needed...
|
@@ -93,7 +90,7 @@ you can set up your WebDataset as follows:
|
|
93 |
import webdataset as wds
|
94 |
|
95 |
# Define the URL pattern to stream the tar shards directly from Hugging Face
|
96 |
-
url_pattern = "https://huggingface.co/datasets/blowing-up-groundhogs/font-square-v2/resolve/main/tars/{000000..
|
97 |
# Adjust the shard range (here 000000 to 000010) to cover all your tar shards.
|
98 |
|
99 |
# Create a WebDataset that streams data
|
@@ -103,10 +100,8 @@ dataset = wds.WebDataset(url_pattern).decode("pil")
|
|
103 |
for sample in dataset:
|
104 |
rgb_image = sample["rgb.png"]
|
105 |
bw_image = sample["bw.png"]
|
106 |
-
|
107 |
-
|
108 |
-
import json
|
109 |
-
metadata = json.loads(metadata_bytes.decode("utf-8"))
|
110 |
print("Sample metadata:", metadata)
|
111 |
|
112 |
# Process sample as needed...
|
@@ -138,7 +133,7 @@ for sample in dataset:
|
|
138 |
```
|
139 |
|
140 |
- **Shard Naming:**
|
141 |
-
Ensure that the naming convention in your `tars/` folder matches the URL pattern used above. Adjust the pattern `{000000..
|
142 |
|
143 |
---
|
144 |
|
|
|
35 |
from huggingface_hub import snapshot_download
|
36 |
|
37 |
# Download the repository; the local path is returned
|
38 |
+
local_dir = snapshot_download(repo_id="blowing-up-groundhogs/font-square-v2", repo_type="dataset")
|
39 |
print("Dataset downloaded to:", local_dir)
|
40 |
```
|
41 |
|
|
|
52 |
|
53 |
# Assuming the dataset was downloaded to `local_dir` and tar shards are in the 'tars' folder
|
54 |
local_dir = "path/to/font-square-v2" # Update this path if necessary
|
55 |
+
tar_pattern = os.path.join(local_dir, "tars", "{000000..000500}.tar") # Adjust range to match your tar shard naming
|
56 |
|
57 |
# Create a WebDataset
|
58 |
dataset = wds.WebDataset(tar_pattern).decode("pil")
|
|
|
62 |
# Access sample items
|
63 |
rgb_image = sample["rgb.png"] # RGB image (PIL image)
|
64 |
bw_image = sample["bw.png"] # BW image (PIL image)
|
65 |
+
metadata = sample["json"]
|
66 |
+
|
|
|
|
|
|
|
67 |
print("Sample metadata:", metadata)
|
68 |
|
69 |
# Process the images as needed...
|
|
|
90 |
import webdataset as wds
|
91 |
|
92 |
# Define the URL pattern to stream the tar shards directly from Hugging Face
|
93 |
+
url_pattern = "https://huggingface.co/datasets/blowing-up-groundhogs/font-square-v2/resolve/main/tars/{000000..000500}.tar"
|
94 |
# Adjust the shard range (here 000000 to 000010) to cover all your tar shards.
|
95 |
|
96 |
# Create a WebDataset that streams data
|
|
|
100 |
for sample in dataset:
|
101 |
rgb_image = sample["rgb.png"]
|
102 |
bw_image = sample["bw.png"]
|
103 |
+
metadata = sample["json"]
|
104 |
+
|
|
|
|
|
105 |
print("Sample metadata:", metadata)
|
106 |
|
107 |
# Process sample as needed...
|
|
|
133 |
```
|
134 |
|
135 |
- **Shard Naming:**
|
136 |
+
Ensure that the naming convention in your `tars/` folder matches the URL pattern used above. Adjust the pattern `{000000..000500}` accordingly if your tar files have a different naming scheme or if there are more shards.
|
137 |
|
138 |
---
|
139 |
|
tars/000009.tar
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e910feb06d9e6bfed40d416d7f9ecd7559cf0b741548924c2e8844238354da3d
|
3 |
+
size 262082560
|
tars/000010.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6e143233161494704ad02e7f4b263f98767e2916d087408e80d62c52d636db65
|
3 |
+
size 252948480
|
tars/000011.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3bad03e97ba95db0bb093186a5d3bb59a459dad689a3b31b2ec6a44e33b5e7d6
|
3 |
+
size 234946560
|
tars/000012.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:97f7b1f0f466fa30b8be52f7b8f5602cbd7de979acbaae1ad2b95e6eb8906b11
|
3 |
+
size 234588160
|
tars/000013.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06057dfc8fe7f2de8d7ef3fc6ca653618c67b197d69e5ca63ee7bce5b38ab746
|
3 |
+
size 230594560
|
tars/000014.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7cf6982df14c965dc65d22e24f9288a58c29d2226b470b75121c0739665c510a
|
3 |
+
size 247132160
|
tars/000015.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e860801cd8a898c6e186e7998607bbdfe97bda1c45aefa94ed8227179aaa425f
|
3 |
+
size 250757120
|
tars/000016.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5e8ec49c9c21e7a0b94b28ef2d31c83eca079646e0fb3c0fe0bfcbd6094ae58d
|
3 |
+
size 225884160
|
tars/000017.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:971c64cbbff4e2a2c7ab606891a804235128890daada98a93eae35ab965c5ee1
|
3 |
+
size 204103680
|
tars/000018.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8a5c6d130f7f32d9719ecfc1d50a052421454eb238291ffb0769c858677f3c9
|
3 |
+
size 194027520
|
tars/000019.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79af88d0aa57181805fb53c8c73f3734bcffe505aedcec096e33ea8f93651e58
|
3 |
+
size 194478080
|
tars/000020.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4ac4047742627a975f9d47f15fc28fd03e314fd3d9b8f95145fc70c3a6f81db3
|
3 |
+
size 189675520
|
tars/000021.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df0d0e09cdea0e0ee803438be1ee25409bdfcfdd30fe02417f6d749c06701a2a
|
3 |
+
size 211210240
|
tars/000022.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4429e141b88700407b855bf9c4a3ce2272bdd2eae4f5a0e03070d083962bc289
|
3 |
+
size 175544320
|
tars/000023.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc7118bd5e7eaa3a520bd9f5d145a6c3630cf3140c3d2b2a08f158ab44388765
|
3 |
+
size 206540800
|
tars/000024.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52973bac851339300453a0a94539cc5ed3105fb5de991780867ebb9a7fd78ce5
|
3 |
+
size 128378880
|
tars/000025.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6c2f8718dc6e911b04e415e93cebb37194a8545c563a0df6f5e0097a66111d6
|
3 |
+
size 278579200
|
tars/000026.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:973af62fd892c3baaf8df88974804b2f0da29dcb43b534f5f0f25b287e23aab2
|
3 |
+
size 258693120
|
tars/000027.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f807434f7e39f084b3bc19d0c667a93c9a5e116d34fc22ea3ff55da20352aa2d
|
3 |
+
size 254197760
|
tars/000028.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2fec38d1f229fa798eb015c919b1729fe2149f74375f5ef6799e08692fc6f50b
|
3 |
+
size 244305920
|
tars/000029.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f0c3b90d24ca183a1df24fb8bfef5ebace4fdef16650d7e58c50de7a6dd3347
|
3 |
+
size 264407040
|
tars/000030.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04a6a803e71ac6008fc740dd9d1a0cbec6d78b4ce69b4b13c5d4561f2b68a743
|
3 |
+
size 265072640
|
tars/000031.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:530e018833b1740fb1c82fa28f8cfdb01172efb55ac142c47121404eee59456a
|
3 |
+
size 46040900
|