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
Profile picture
StraightDog31
Moderator
4 Questions, 15 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

15 × Eureka!
0 Votes
20 Answers
550 Views
0 Votes 20 Answers 550 Views
Hi all, I am having trouble using the StorageManager to upload files to GCP bucket. Do I need to pass bucket path as output_uri while calling Task.init ? Wit...
2 years ago
0 Votes
3 Answers
491 Views
0 Votes 3 Answers 491 Views
Is there a way to copy the parameters from the tasks in a pipeline?
2 years ago
0 Votes
0 Answers
487 Views
0 Votes 0 Answers 487 Views
Any help would be appreciated :)
2 years ago
0 Votes
5 Answers
529 Views
0 Votes 5 Answers 529 Views
Does anyone get these junk logs from matplotlib while using clearml? Is there a way to disable it?
2 years ago
0 Hi All, I Am Having Trouble Using The

from clearml import Task, Dataset, StorageManager dataset_rgb = Dataset.get(dataset_id=args['dataset_id_rgb']) folder_rgb = dataset_rgb.get_local_copy() files_rgb = dataset_rgb.list_files() for separated_file in files_rgb: separated_file_posix_path = PosixPath(separated_file) remote_file_path = f"gs://<bucket-name>/<folder-name>" StorageManager.upload_file(local_file=separated_file_posix_path, remote_url=remote_file_path)

2 years ago
0 Hi All, I Am Having Trouble Using The

Yes I was passing that. Now I am passing it the same way you have mentioned, but my code still gets stuck as in above screenshot. My guess is that it can't resolve credentials. It does not give me any pop up to login also

2 years ago
0 Hi All, I Am Having Trouble Using The

We are uploading it to Google Bucket because this is the last step of processing after image acquisition and before ML modelling. We need a more permanent place to store data

2 years ago
0 Hi All, I Am Having Trouble Using The

Exception has occurred: ValueError Upload failed
Code:
# Upload separated files for separated_file in Path(dataset_folder).rglob(f'*{batch_id}*'): remote_file_path = f"gs://<bucket>/{hatchery_id}/{batch_id}/{single_egg_object_id}/{folder_type}/{str(PurePath(separated_file)).split('/')[-1]}" StorageManager.upload_file(local_file=separated_file, remote_url=remote_file_path)

2 years ago
0 Hi All, I Am Having Trouble Using The

Actually the values of separated_file_posix_path and separated_file are same

2 years ago
0 Hi All, I Am Having Trouble Using The

For separated_file_posix_path

2 years ago
0 Hi All, I Am Having Trouble Using The

Just added. What about output_uri?

2 years ago
0 Is There A Way To Copy The Parameters From The Tasks In A Pipeline?

What is the efficient way of doing this?

2 years ago
0 Hi All, I Am Having Trouble Using The

Yes, my bad. It was VPN issue and I fixed it. Now I have one last error:
[Errno 2] No such file or directory: '<filename.extension>'

2 years ago
0 Hi All, I Am Having Trouble Using The

I copied the Google Storage part clearml.conf and creds.json in the agent to my local and now it gets stuck here if I run:

2 years ago
0 Is There A Way To Copy The Parameters From The Tasks In A Pipeline?

The screenshot is from the clearml server. Sometimes I run the pipeline on server and monitor it. If a task has failed, I want to copy these parameters and debug the task locally. But clearml does not allow me to copy them. So I have to download this as a JSON and search for the params there

2 years ago
0 Does Anyone Get These Junk Logs From Matplotlib While Using Clearml? Is There A Way To Disable It?

Yes it is. They come always for us. Even if there is no matplotlib in requirements

2 years ago
0 Hi All, I Am Having Trouble Using The

remote_url = 'gs://<bucket>/6141af10b81a76709db962fd/6141b0ee5f627d0020819489/6147c3db1f0d7f48ddf8e952/camera/6141b0ee5f627d0020819489_14.png' local_file = '6141b0ee5f627d0020819489_14.png'

2 years ago
0 Hi All, I Am Having Trouble Using The

I need files in different folders. So I cannot upload whole folder

2 years ago