pull/1/head
hubenyi 2020-04-25 12:05:56 +08:00
parent fb00c2e96d
commit d14b95dc84
1 changed files with 26 additions and 1 deletions

View File

@ -57,7 +57,32 @@ To reproduce our experimental results, you need to first download these datasets
For image retrieval task, the dataset should be divided into two subset: query set and gallery set. If your dataset has been divided already, you can skip this step.
In order to help you to reproduce our results conventionally, we provide four txt files, each of which is the division protocol used in our experiments. These txt files can be found in [split_file](../main/split_file) and you can use the following command to split the dataset mentioned above:
In order to help you to reproduce our results conventionally, we provide four txt files, each of which is the division protocol used in our experiments.
```shell
data
├── caltech101
│ ├── 101_ObjectCategories
│ ├── accordion
│ ├── airplanes
│ └── ···
├── cbir
│ ├── oxford
│ │ ├── gt
│ │ └── images
│ └── pairs
│ ├── gt
│ └── images
└── cub_200_2011
│ ├── images
│ └── ···
└── indoor
├── Images
└── ···
```
These txt files can be found in [split_file](../main/split_file) and you can use the following command to split the dataset mentioned above:
```shell
python3 main/split_dataset.py [-d ${dataset}] [-sf ${split_file}]