def download_msls_sample()

in mapillary_sls/utils/eval.py [0:0]


def download_msls_sample(path):
    print("Downloading MSLS sample to {}".format(path))
    path.mkdir(parents=True)
    path_dl, _ = urllib.request.urlretrieve("https://static.mapillary.com/MSLS_samples.zip")
    with zipfile.ZipFile(path_dl, 'r') as zf:
        zf.extractall(path)