Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
From Clearml Import Dataset # Preprocessing Code Here Dataset = Dataset.Create(Dataset_Name='Dataset Name',Dataset_Project='Dataset Project') Dataset.Add_Files('/Path_To_Data') Dataset.Upload() Dataset.Close()

` from clearml import Dataset

Preprocessing code here

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?

  
  
Posted 2 years ago
Votes Newest

Answers 3


Okay finalize works. I was looking here: https://github.com/allegroai/clearml/blob/master/docs/datasets.md

  
  
Posted 2 years ago

I think you should call dataset.finalize()

  
  
Posted 2 years ago
578 Views
3 Answers
2 years ago
one year ago
Tags