(duration:int)
| 78 | run.log_artifact(processed_data) |
| 79 | |
| 80 | def count_down(duration:int): |
| 81 | for remaining in range(duration, 0, -1): |
| 82 | sys.stdout.write("\r") |
| 83 | sys.stdout.write("{:2d} seconds remaining...".format(remaining)) |
| 84 | sys.stdout.flush() |
| 85 | time.sleep(1) |
| 86 | |
| 87 | |
| 88 | def test_artifact(args): |