JLD commited on
Commit
21443cf
1 Parent(s): fd35a16

Correct URLS for data

Browse files
Files changed (1) hide show
  1. unsplash25k_image_embeddings.py +2 -2
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/blob/main/data/image_ids.feather.zstd",
38
- "embeddings": "https://huggingface.co/datasets/JLD/unsplash25k-image-embeddings/blob/main/data/unsplash_embeddings.safetensors"
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):