Initialize an experiment
With the platform (UI)
You can create experiments manually in Picsell.ia in the 'Experiments' tab. It's a basic usage that allows you to initialize an experiment instance with a few parameters :
name
description
base architecture
hyperparameters (will be stored in a data asset)
dataset

Base architecture
If you click on one of the button, a modal will open and a list of available base architecture will appear.

And then if you select a base model, you will see it appear like this

What is the point ?
As ML and AI training process is an iterative process, you may or may not want to use previous checkpoints, trained model, config file of a previous version of your experiments.
This is done automatically when selecting a base experiment or model 😌
Dataset

If you are doing a computer vision experiment, you might have some data in your Datalake and have created some Datasets.
To attach a dataset to your experiment so you can download the images or annotations in your code, you can select one here (alternatively you can always pull your datasets by using the Dataset
class of the Python SDK).
You can now observe the experiments you created in the experiment list of your project, it will look like this.

With the Python SDK
Create a new experiment
Here is the following snippet that allows you to create a new and clean experiment directly from your python interpreter (or jupyter notebook or IDE or whatever you like).
You should see the following printed :
If you go to Picsell.ia in the experiment list of your project, your brand new experiment should appear, waiting for you to feed him with your best parameters, performance metrics or trained models !

Create with dataset
If you are doing a computer vision experiment, you might have some data in your Datalake and have created some Datasets.
To attach a dataset to your experiment so you can download the images or annotations with the experiment
class you can specify a dataset
argument in the create
method :
You must have attached the desired dataset to the project of your experiment first !
Then you will be able to download images and annotations by using the corresponding methods, please check the sdk reference for more details.
Iterate from a previous experiment
If you are for example training a neural network, you might need to do several trainings and need to change the dataset or the hyperparameters from one to another. Instead of starting from scratch you can clone your old experiment's assets such as checkpoint files to iterate over your model.
To do so you can just call the create
method and specify the name the experiment you want to clone.
You can also specify what assets you want to clone from the previous experiment, for example :
will create a new experiment and get all the file assets from the previous one, or
will clone every data assets, you can also do both by specifying both arguments.
Clone a model from the HUB or from your organization
As you may know, Picsell.ia has a public model HUB where you can find state-of-the-art trained models but also the public models from all of our user.
If you want to perform transfer learning from one of those model or from a trained model of your organization, you can also initialize an experiment like this :
This will create an experiment and clone all the files that has been saved in this model.
Last updated
Was this helpful?