(prefix, suffix=None, path=None)
| 21 | |
| 22 | |
| 23 | def timed_name(prefix, suffix=None, path=None): |
| 24 | return os.path.join( |
| 25 | path, |
| 26 | f"{prefix}-{datetime.now().strftime('%m-%d-%H-%M-%S')}{suffix}" |
| 27 | ) |
| 28 | |
| 29 | def save_multiple_images(imgs, path, debug=True): |
| 30 | # imgs: list of tensor images |