I think you should call dataset.finalize()
Okay finalize works. I was looking here: https://github.com/allegroai/clearml/blob/master/docs/datasets.md
` from clearml import Dataset
dataset = Dataset.create(dataset_name='dataset name',dataset_project='dataset project')
dataset.add_files('/path_to_data')
dataset.upload()
dataset.close() `AttributeError: 'Dataset' object has no attribute 'close'
This is an example from the README, how can I solve this?
Also the status in clearml is still running while the script is finished
It executes a script called register_dataset while I run a script called clearmldata.py?
I think you should call dataset.finalize()
Okay finalize works. I was looking here: https://github.com/allegroai/clearml/blob/master/docs/datasets.md