Checkout an experiment
Here we will see how to retrieve an experiment, it is useful if you want to work on an experiment created in our UI or if you need to download your saved model weights for inference for example...
The checkout method
To checkout an experiment, you can use the following method :
The checkout
method will return the instance of the Experiment
Class, you will now have access to every method without entering the name or id again.
Arguments
There are several optional arguments you can specify for this method
tree (Boolean, default=False)
with_file (Boolean, default=False)
with_data (Boolean, default=False)
Tree
Use the tree
parameter to automatically create training-ready folders for your experiment. If set to True
it will create the following folders :
checkpoint
config
exported_model
images
metrics
records
results
Please check the picsellia_tf
documentation for more details on how this different folders are used.
with_data
Set this argument to True to access the details of every data assets stored for your experiment, this will give you access to the raw data stored in every asset.
You can access the list in the data
property of the Experiment
Class
with_file
Set this argument to True to download every file asset stored for your experiment
Last updated
Was this helpful?