Retrieve and update your assets
Here we will learn how to interact with the data and file assets that we have saved to the platform.
Working with data assets
List all your data assets
from picsellia.client import Client
api_token = '4d388e237d10b8a19a93517ffbe7ea32ee7f4787'
project_token = '9c68b4ae-691d-4c3a-9972-8fe49ffb2799'
experiment = Client.Experiment(
api_token=api_token,
project_token=project_token
)
experiment.checkout('my_new_experiment')
experiment.list_data() [
{
'id': 72,
'date_created': '2021-02-09T12:32:18.293746Z',
'last_update': '2021-02-09T12:32:18.293556Z',
'name': 'parameters',
'data': {'steps': 200000,
'nb_gpu': 1,
'batch_size': 8,
'learning_rate': 0.005,
'annotation_type': 'classification'
},
'type': 'table'
}
]Delete all your data assets
Retrieve an asset
Updating an asset
Delete an asset
Working with file assets
List all your file assets
Delete all your file assets
Retrieve and download a file asset
Update a file asset
Delete a file asset
Last updated