vid2vid/scripts/download_datasets.py
2018-09-19 03:13:29 +00:00

10 lines
322 B
Python
Executable File

import os
from download_gdrive import *
file_id = '1rPcbnanuApZeo2uc7h55OneBkbcFCnnf'
chpt_path = './datasets/'
if not os.path.isdir(chpt_path):
os.makedirs(chpt_path)
destination = os.path.join(chpt_path, 'datasets.zip')
download_file_from_google_drive(file_id, destination)
unzip_file(destination, chpt_path)