My use case is basically if I want to now access this dataset from somewhere else, shouldn't I be able to do so using its id?
Hi VexedCat68 ,
How do you create it? with Dataset.create
?
dataset = Dataset.create(data_name, project_name)
print('Dataset Created, Adding Files...')
dataset.add_files(data_dir)
print('Files added succesfully, Uploading Files...')
dataset.upload(output_url=upload_dir, show_progress
This works, thanks. Do you have any link to where I can also see the parameters of the Dataset class or was it just on git?
not the parameters, but maybe this can help - https://clear.ml/docs/latest/docs/clearml_data
try:
dataset = Dataset.create(data_name, project_name) dataset_id = dataset.id