Skip to content

Commit 407ae28

Browse files
committed
reset default data and out directories
1 parent 6f91790 commit 407ae28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
flags.DEFINE_integer("output_width", None, "The size of the output images to produce. If None, same value as output_height [None]")
2121
flags.DEFINE_string("dataset", "celebA", "The name of dataset [celebA, mnist, lsun]")
2222
flags.DEFINE_string("input_fname_pattern", "*.jpg", "Glob pattern of filename of input images [*]")
23-
flags.DEFINE_string("data_dir", "$HOME/data", "path to datasets [$HOME/data]")
24-
flags.DEFINE_string("out_dir", "$HOME/out", "Root directory for outputs [$HOME/out]")
23+
flags.DEFINE_string("data_dir", "./data", "path to datasets [e.g. $HOME/data]")
24+
flags.DEFINE_string("out_dir", "./out", "Root directory for outputs [e.g. $HOME/out]")
2525
flags.DEFINE_string("out_name", "", "Folder (under out_root_dir) for all outputs. Generated automatically if left blank []")
2626
flags.DEFINE_string("checkpoint_dir", "checkpoint", "Folder (under out_root_dir/out_name) to save checkpoints [checkpoint]")
2727
flags.DEFINE_string("sample_dir", "samples", "Folder (under out_root_dir/out_name) to save samples [samples]")

0 commit comments

Comments
 (0)