download_openimages_full.sh 330 Bytes
Newer Older
liangjing's avatar
liangjing committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

: "${DATASET_PATH:=/datasets/open-images-v6}"

while [ "$1" != "" ]; do
    case $1 in
        -d | --dataset-path  )        shift
                                      DATASET_PATH=$1
                                      ;;
    esac
    shift
done

python fiftyone_openimages.py \
    --dataset-dir=${DATASET_PATH}