dist_download.py 617 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
from __future__ import print_function
import os
import sys
LOCAL_PATH = os.path.dirname(os.path.abspath(__file__))
TOOLS_PATH = os.path.join(LOCAL_PATH, "..", "..", "tools")
sys.path.append(TOOLS_PATH)

from tools import download_file_and_uncompress

if __name__ == '__main__':
    url = "https://paddlerec.bj.bcebos.com/deepfm%2Fdist_data_demo.tar.gz"

    print("download and extract starting...")
    download_file_and_uncompress(url, savename="dist_data_demo.tar.gz")
    print("download and extract finished")

    print("preprocessing...")
    os.system("python dist_preprocess.py")
    print("preprocess done")