mirror of
https://github.com/NVIDIA/vid2vid.git
synced 2026-02-01 17:26:51 +00:00
10 lines
322 B
Python
Executable File
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) |