Any graphical or console output as well as file artifacts created by a training run (e.g. saved models or saved model weights) can be viewed from the Output tab of the run view:
You can use the copy_run_files()
function to export file artifacts from runs into another directory. For example:
You can also use the copy_run()
function to export a run directory in it’s entirety. For example, this code exports the specified run to a “best-run” directory:
Note that copy_run()
will accept any number of runs. For example, this code exports all run directories with an evaluation accuracy greater than 0.98 to a “best-runs” directory:
You can use the clean_runs()
function to archive a set of runs you no longer need the data from. For example, this code archives all runs with an eval accuracy less than 0.98:
If you don’t specify a set of runs to clean then all runs will be archived:
Note that you’ll always get a confirmation prompt before the runs are actually archived.