From d14b95dc84b3a153dff5ce8a79d714a076ce3e56 Mon Sep 17 00:00:00 2001 From: hubenyi <867320491@qq.com> Date: Sat, 25 Apr 2020 12:05:56 +0800 Subject: [PATCH] upload --- docs/INSTALL.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index be8db31..c015f85 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -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}]