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
30 Answers
1K Views
0 Votes 30 Answers 1K 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
1K Views
0 Votes 7 Answers 1K Views
is there a way to sort plots by iteration?
3 years ago
0 Votes
30 Answers
993 Views
0 Votes 30 Answers 993 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
7 Answers
1K Views
0 Votes 7 Answers 1K 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
5 Answers
1K Views
0 Votes 5 Answers 1K 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
6 Answers
969 Views
0 Votes 6 Answers 969 Views
Hello, how can I make a pipeline that accepts parameters?
3 years ago
0 Votes
14 Answers
1K Views
0 Votes 14 Answers 1K 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
29 Answers
1K Views
0 Votes 29 Answers 1K 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
4 Answers
1K Views
0 Votes 4 Answers 1K 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.
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K 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
8 Answers
1K Views
0 Votes 8 Answers 1K 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
30 Answers
1K Views
0 Votes 30 Answers 1K 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
30 Answers
1K Views
0 Votes 30 Answers 1K 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
0 Hi! Does Clearml Have A Way To Turn On/Off Virtual Machines Depending If There Are Experiments On Queue?

Hi! I'm also interested in this feature..let me know how I can help 🙂

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 Is There A Way To Sort Plots By Iteration?

FYI, in case it is useful for someone else:
` import tensorflow as tf
import numpy as np
from plotly.subplots import make_subplots
import plotly.graph_objects as go
import itertools
from clearml import Task

def get_trace(z, series, classes, colorscale='blues', showscale=True, verbose=False):
if verbose:
print(z)
ind = '1' if series=='train' else '2'
trace = dict(
type="heatmap",
z=z[::-1],
x=classes,
y=classes[::-1],
...

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

I would like to be able to compare sbs train/val confusion matrices

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 What Could Be The Reason For My Package To Not Be Loading Under The "Installed Packages"? I Have A

and then when running in agent mode, it fails because my_package can't be installed using pip...so I have to manually edit the section and remove the "my_package"

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

it seems that I need to add it ( import pandas ) in the main file...even though I don't use it there...

3 years ago
0 What Could Be The Reason For Fail Status Of A Task That Seems To Have Completed Correctly? No Information In The Log Whatsoever

File "aicalibration/generate_tfrecord_pipeline.py", line 30, in <module>
  task.upload_artifact('train_tfrecord', artifact_object=fn_train)
 File "/home/usr_341317_ulta_com/.clearml/venvs-builds/3.7/lib/python3.7/site-packages/clearml/task.py", line 1484, in upload_artifact
  auto_pickle=auto_pickle, preview=preview, wait_on_upload=wait_on_upload)
 File "/home/usr_341317_ulta_com/.clearml/venvs-builds/3.7/lib/python3.7/site-packages/clearml/binding/artifacts.py", line 560, in upload_artifa...

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

in this example my main func is going to be the scripts that creates the pipeline controller

3 years ago
0 What Could Be The Reason For Fail Status Of A Task That Seems To Have Completed Correctly? No Information In The Log Whatsoever

it's my error: I have tensorflow==2.2 in my venv, and added Task.add_requirements('tensorflow') which forces tensorflow==2.4:

Storing stdout and stderr log into [/tmp/.clearml_agent_out.kmqde7st.txt]
Traceback (most recent call last):
 File "aicalibration/generate_tfrecord_pipeline.py", line 15, in <module>
  task = Task.init(project_name='AI Calibration', task_name='Pipeline step 1 dataset artifact')
 File "/home/username/.clearml/venvs-builds/3.7/lib/python3.7/site-packages/clearm...

3 years ago
3 years ago
Show more results compactanswers