download_dataset.py 300 Bytes
Newer Older
zhangqha's avatar
zhangqha committed
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
AASIST
Copyright (c) 2021-present NAVER Corp.
MIT license
"""

import os

if __name__ == "__main__":
    cmd = "curl -o ./LA.zip -# https://datashare.ed.ac.uk/bitstream/handle/10283/3336/LA.zip\?sequence\=3\&isAllowed\=y"
    os.system(cmd)
    cmd = "unzip LA.zip"
    os.system(cmd)