Progressive-Generative-Networks
Progressive-Generative-Networks copied to clipboard
train problem
hi ~~first, I creat a file named gan_lstm.csv and i run make-image.py,but there is nothing in it . Then i run gan_lstm.py, a problem happened: FileNotFoundError: [Errno 2] File b'paris.csv' does not exist: b'paris.csv' so what should i do ,i just changed Param: out_path. by the way my make_image is os.chdir('./dataset/paris_train_original/') name = os.listdir(os.getcwd()) print(name)
id = 0 with open('./gan_lstm.csv','w') as csvfile: w = csv.writer(csvfile) for x in name: w.writerow(['.dataset/paris_train_original/'+x, id]) id+=1