Correct URLS for data
Browse files
unsplash25k_image_embeddings.py
CHANGED
@@ -34,8 +34,8 @@ _LICENSE = ""
|
|
34 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
35 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
36 |
_URLS = {
|
37 |
-
"image_ids": "https://huggingface.co/datasets/JLD/unsplash25k-image-embeddings/
|
38 |
-
"embeddings": "https://huggingface.co/datasets/JLD/unsplash25k-image-embeddings/
|
39 |
}
|
40 |
|
41 |
class Unsplash25kImageEmbeddingsDataset(datasets.GeneratorBasedBuilder):
|
|
|
34 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
35 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
36 |
_URLS = {
|
37 |
+
"image_ids": "https://huggingface.co/datasets/JLD/unsplash25k-image-embeddings/main/data/image_ids.feather.zstd",
|
38 |
+
"embeddings": "https://huggingface.co/datasets/JLD/unsplash25k-image-embeddings/main/data/unsplash_embeddings.safetensors"
|
39 |
}
|
40 |
|
41 |
class Unsplash25kImageEmbeddingsDataset(datasets.GeneratorBasedBuilder):
|