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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Sorry, I'M Asking Too Much Questions Today. I Gave Myself A Whole Day To Fully Evaluate Clearml...That'S Why. Here Goes. Regarding Automatic Logging (Automagikal), I Took Your Example (

Hi SubstantialElk6 ,

Please feel free to ask anything 🙂

If nothing is reported, then nothing will be displayed.

For example, if you are reporting to Tensorboard, it will be automatically sent to the UI - https://github.com/allegroai/clearml/blob/master/examples/frameworks/pytorch/pytorch_tensorboard.py (run this example and view the scalers section 🙂 )

3 years ago
0 Hello, A Question On Using The Aws Autoscaler App In The Saas – Can A Custom Iam Role Be Used For Launching The Machines? I’M Looking At Giving Custom Permissions To The Machine For Checking Out Secrets / Code / Etc.

Regarding this one, as

mention, you can have a full iam role (without any credentials) in higher tiers, in the regular youll need the credentials for the auth using the boto3 commands for spin up, spin down, tags and such apis commands. The app currently is hosted by us, so you iam role won’t be really available

With it the new created instance will have the iam role associate to it too

2 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

is it possible to overwrite if trains.conf did exist

Yes, you can choose specific configuration file with TRAINS_CONFIG_FILE environment var.

4 years ago
0 Wondering Why My Plots Are Not In Plot Section But Under Debug Section

simply changing to 

show

doesn’t work in my case as i am displaying CM.. what about if i use 

matshow

Can you share with me some code you have (just the matplot part)? What about the example? if you run it, do you get some plots in plots section and some in debug?

4 years ago
0 Hi, It Seems That Report_Image Puts The Image Both In Plots And Both In Debug Samples, Why Is That?

Trains auto-magical reports many frameworks plots: matplotlib, Tensorboard and more, maybe this is the issue? The report_media / report_image was double reporting?

4 years ago
0 How Is The New Gui "Setup Shell Script" Option Supposed To Be Used? I Would Like To Add An Apt Install Command To One Of My Tasks, And From Reading The Related Github Issues I Presumed I Could Just Type Those In To This New Textbox In The Tast Exectution-

You can try set_base_docker :

t = Task.init(project_name="examples", task_name="set docker parames") t.set_base_docker( docker_cmd="nvidia/cuda:11.1", docker_arguments="-e ENV=1", docker_setup_bash_script=['apt update', 'apt-get install -y gcc'] )

3 years ago
0 Hi Guys! What Can Be Wrong Here And How To Fix It?

Hi  ItchyHippopotamus18  , can you try with
torch.save(model_jit, os.path.join(checkpoint_path, f'{epoch_num}_{round(acc_full, 4)}.pt'))?

4 years ago
0 Hi. I'D Like To Try The Gcp Autoscaler.

Hi PanickyMoth78 , thanks for the logs, I think I know the issue, i’m trying to reproduce it my side, keeping you updated about it

2 years ago
0 Looks Like The Website Is Down. When I Try To Create Task, I Get The Following Error

Thanks ImpressionableAlligator9 and MagnificentWorm7 for reporting this, I will double check it

2 years ago
0 How Is The New Gui "Setup Shell Script" Option Supposed To Be Used? I Would Like To Add An Apt Install Command To One Of My Tasks, And From Reading The Related Github Issues I Presumed I Could Just Type Those In To This New Textbox In The Tast Exectution-

Hi ThickDove42 ,

The SETUP SHELL SCRIPT is the bash script to run at the beginning of the docker before launching the Task itself.

You can just try edit it, for example:

apt update apt-get install -y gcc

3 years ago
0 Hi. I Have A Task Executed On Clearml-Agent, Configured With

Where did you add the task.execute_remotely command? do you have a sample code I can run?

3 years ago
0 Should Calling

Hi MammothGoat53 ,

which clearml version are you using? I run the same and all worked as expected (I changed the project_name and the task_name to be 4 chars length)

2 years ago
0 Hi Again, I Am Trying To Make The Aws Autoscaler Work With Ec2 Instances, But It Fails To Setup The Agent In The Machine: The Logs Of The User-Data Script Show That It Fails Updating The Machine (See Below)

agree

E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)Another process is using the lock, can you specify the ami (and region) so I can try to reproduce it?

3 years ago
0 Another Problem Is That When Using Mp.Spawn To Init Distributed Training In Pytorch,

Hi PompousHawk82 . Are you running in parallel the several instances of the same code on the same task?

3 years ago
0 Hi, Could You Provide An Example Of Setting Up Sdk.Storage.Direct_Access?

Hi VictoriousPenguin97

sdk.storage.direct_access is part of the extended support in the paid version.
But I think its not required since ClearML will simply try to access the path directly as it is, and you don’t need to configure it.

3 years ago
0 Hi, I Know There Is Cleanup Service To Delete Archived Experiments Periodically. For The Next Version, Can You Edit Ui So That We Can Delete Experiments That We Want To Delete. Because, I Want To Save Some Of Old Experiments In The Archive Folder.

Hi MysteriousBee56 ,

The https://github.com/allegroai/trains/blob/master/examples/services/cleanup/cleanup_service.py is an example how you can add services to manage your experiments.
You can change the criteria for fetching the tasks in this script (in the https://github.com/allegroai/trains/blob/master/examples/services/cleanup/cleanup_service.py#L72 call) to something like a specific tag you can add to the experiments ( delete tag?, you can add tag to multi tasks) and it should...

4 years ago
0 Hi, I Have Started To Receive The Following Error Message:

Hi ArrogantBlackbird16 ,

How do you generate and run your tasks? Do you use the same flow as in the https://clear.ml/docs/latest/docs/fundamentals/agents_and_queues#agent-and-queue-workflow ? Some other automation?

3 years ago
3 years ago
0 I Am Using

You can add a limitation to the query page size:
task_filter = {"page_size": <your-limit>, "page": 0}
what do you think?

3 years ago
0 Hi, How Can I Get Programmatically A Task'S Logged Stderr Stream?

Hi ImmensePenguin78 ,

You can get all the console outputs using task.get_reported_console_output() . can this do the trick?

3 years ago
0 Can I Upload Files That Are Created On The Remote Machine? So Far It Just Get Stuck (The Files Are Small 10 Kb Or So) I Have A Script That Creates A Folder With Some Files, Some Of Them I Want To Keep, So I Tried Uploading To Storage, No Luck.

Hi GleamingGiraffe20 ,

Without adding Task.init , i’m getting some OSError: [Errno 9] Bad file descriptor error, do you get those too?

Do you run your script from CLI or IDE (pycharm maybe?)?

4 years ago
0 Hi, I'M Trying Out The

which docker image do you use? can you try pulling the image manually?

3 years ago
0 Hi Allegroal Team, I Recently Saw Your Project And Tried It. This Is A Great Tool! I Have A Question To Ask:

FierceFly22 like Elior wrote, you can use Task.execute_remotely , just need to supply the queue name 🙂

4 years ago
Show more results compactanswers