Skip to content

Latest commit

 

History

History

datasets

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Available Datasets

Datasets can be downloaded in: https://drive.google.com/drive/folders/1AThibyepa84PKW893XV0MwZyMoKy6B_e

To use the datasets with the WSEF framework, just extract them inside the "datasets/" directory.

Currently available:

Note: Features were extracted using:

Datasets Directory Structure

The "datasets/" directory contains a folder for each dataset, where the name must correspond to the dataset name defined in the WSEF config.py file. Inside each directory there is:

  • A groundtruth.txt file that specifies the label of each class. This file uses the same format of the UDLF classes file.
  • The rks directory that contains a text file for each ranked list. The files use the same format of the UDLF numeric ranked lists.
  • The features directory that contains a .npz file for each feature. Each ranked list must have a corresponding feature. Each file contains a list with a feature vector for each image.
datasets
│
└───flowers
│   │   groundtruth.txt
│   │
│   └───rks
│   │   │   acc.txt
│   |   │   resnet.txt
│   |   │   ...
│   │
│   └───features
│       │   acc.npz
│       │   resnet.npz
│       │   ...
│
└───corel5k
│   │   groundtruth.txt
│   │
│   └───rks
│   │   │   acc.txt
│   |   │   resnet.txt
│   |   │   ...
│   │
│   └───features
│       │   acc.npz
│       │   resnet.npz
│       │   ...