nickfraser
commited on
Commit
•
e6b40f3
1
Parent(s):
8324b6e
Fix (script): print output directory.
Browse files- minimal_script.py +1 -0
minimal_script.py
CHANGED
@@ -93,6 +93,7 @@ def main(args):
|
|
93 |
str_ts = ts.strftime("%Y%m%d_%H%M%S")
|
94 |
output_dir = os.path.join(args.output_path, f'{str_ts}')
|
95 |
os.mkdir(output_dir)
|
|
|
96 |
|
97 |
# Dump args to json
|
98 |
with open(os.path.join(output_dir, 'args.json'), 'w') as fp:
|
|
|
93 |
str_ts = ts.strftime("%Y%m%d_%H%M%S")
|
94 |
output_dir = os.path.join(args.output_path, f'{str_ts}')
|
95 |
os.mkdir(output_dir)
|
96 |
+
print(f"Saving results in {output_dir}")
|
97 |
|
98 |
# Dump args to json
|
99 |
with open(os.path.join(output_dir, 'args.json'), 'w') as fp:
|