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
MagnificentSeaurchin79
Moderator
13 Questions, 160 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

109 × Eureka!
0 Votes
8 Answers
715 Views
0 Votes 8 Answers 715 Views
I don't quite understand the way Iterations work. In my current experiment I report every 10 epochs, I'm currently in my epoch 30, but in the UI it says iter...
3 years ago
0 Votes
29 Answers
817 Views
0 Votes 29 Answers 817 Views
what could be the reason for my package to not be loading under the "INSTALLED PACKAGES"? I have a . in the requirements.txt I added a task.add_requirements(...
3 years ago
0 Votes
5 Answers
785 Views
0 Votes 5 Answers 785 Views
Hi all! I I tried to run the manual_upload_model.py script, using a worker, and it fails because when looking at the installed packages, tensorflow is not th...
3 years ago
0 Votes
7 Answers
690 Views
0 Votes 7 Answers 690 Views
is there a way to sort plots by iteration?
3 years ago
0 Votes
30 Answers
675 Views
0 Votes 30 Answers 675 Views
Hi! I was wondering regarding this issue: https://github.com/allegroai/clearml/issues/181 The solution seems to be to not log by default, and only use a cont...
3 years ago
0 Votes
6 Answers
654 Views
0 Votes 6 Answers 654 Views
Hello, how can I make a pipeline that accepts parameters?
3 years ago
0 Votes
30 Answers
747 Views
0 Votes 30 Answers 747 Views
Hi! Thanks for this awesome tool ๐Ÿ˜„ I wanted to know if there was a way of specifying the output_uri depending on whether I'm running on GCP or in my local s...
3 years ago
0 Votes
7 Answers
701 Views
0 Votes 7 Answers 701 Views
Hi! I'm getting the following error when I upload a folder to GCS using StorageManager, and then use StorageManager to download that folder to use in another...
2 years ago
0 Votes
30 Answers
697 Views
0 Votes 30 Answers 697 Views
What could be the reason for FAIL status of a task that seems to have completed correctly? No information in the log whatsoever
3 years ago
0 Votes
4 Answers
711 Views
0 Votes 4 Answers 711 Views
Hi! I'm using dataset.list_files with wildcards but it is not working as I expected: I think the problem is only when the files are in the root of the dataset.
2 years ago
0 Votes
7 Answers
865 Views
0 Votes 7 Answers 865 Views
I'm following the pipeline controller example...this is the output I get after running the the three scripts for step1, step2, and step3, and finally the pip...
3 years ago
0 Votes
14 Answers
727 Views
0 Votes 14 Answers 727 Views
Hi! I'm trying to deploy clearml server in GCP, but I don't have access to allegro's bucket
3 years ago
0 Votes
30 Answers
787 Views
0 Votes 30 Answers 787 Views
Hi, I'm having a hard time trying to understand the Dataset class. What I need is to be able to get the dataset, delete a file, and upload it again. But the ...
3 years ago
3 years ago
0 Hi, I'M Having A Hard Time Trying To Understand The Dataset Class. What I Need Is To Be Able To Get The Dataset, Delete A File, And Upload It Again. But The Problem Is When I Call The

I did, but I still have the same issue..

tglema@mvd0000xlrndtl2ย clearml-src

git:(28b8502) โœ—

git status
HEAD detached at 0.17.5rc3

I did a python setup.py develop, and ran the script:
` from clearml import Dataset

dataset = Dataset.create(dataset_project='test', dataset_name='example')
dataset.add_files('/home/tglema/example.jpeg')
dataset.add_files('/home/tglema/logo.png')
print(dataset.list_files())
dataset.upload()
dataset.finalize()

dataset_new = Dataset.create...

3 years ago
3 years ago
0 Hi, I'M Having A Hard Time Trying To Understand The Dataset Class. What I Need Is To Be Able To Get The Dataset, Delete A File, And Upload It Again. But The Problem Is When I Call The

but I don't see any change...where is the link to the file removed from?
How are these two datasets different?
Thanks ๐Ÿ™‚

3 years ago
0 Hi, I'M Having A Hard Time Trying To Understand The Dataset Class. What I Need Is To Be Able To Get The Dataset, Delete A File, And Upload It Again. But The Problem Is When I Call The

INHO, the remove_files('logo.png') shouldn't return 0..and I think the problem is that the file passed as argument is not correctly matched with the files stored in the dataset.

3 years ago
0 Hi! Thanks For This Awesome Tool

no, only in the clearml.conf file
Now I removed the output_uri in the conf file of the machine that started the task, and when I run it as agent in GCP it works.
Is this a bug?

3 years ago
0 Hi! Thanks For This Awesome Tool

if I put ~/clearml in the default_output_uri key, and start the task, when run as agent in GCP I get clearml.Task - INFO - Completed model upload to file:///$github_proj_directory/~/clearml/$proj_name/$experiment_name

3 years ago
0 Hi

can this be solved by using a docker image with the preinstalled packages at a user level?

3 years ago
0 What Could Be The Reason For My Package To Not Be Loading Under The "Installed Packages"? I Have A

so in my main file I have:

from my_package import dummy_module

dummy_module.func(args)

3 years ago
0 Is There A Way To Sort Plots By Iteration?

thanks! that was the script I used..but for same reason making two sbs was a bit more complicated than just stacking two..
but I was finally able to do it:

3 years ago
0 Hi! Thanks For This Awesome Tool

since it didn't change (the packages installed)

3 years ago
0 Hi! Thanks For This Awesome Tool

if I write:
in tl2 conf : default_ output_uri : "/home/tglema/clearml"
in GCP it saves in that same dir

3 years ago
0 Hi! Thanks For This Awesome Tool

even though I have set the default_output_uri in GCPs conf file

3 years ago
0 Hi

so I need to run a sed command to replace some lines in one of the tensorflow files..do you know if I can do this as part of the setup.py install?

3 years ago
0 Hello, How Can I Make A Pipeline That Accepts Parameters?

I don't see anything in the CONFIGURATION section:

3 years ago
0 Hi , I Have This Use Case.

sounds like you need to run a service to monitor for new commits in PROJ_1, to trigger the pipeline

3 years ago
0 Hi! Thanks For This Awesome Tool

this is the one in tl2

3 years ago
3 years ago
Show more results compactanswers