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
SkinnyBat30
Moderator
5 Questions, 13 Answers
  Active since 03 June 2023
  Last activity 10 months ago

Reputation

0

Badges 1

13 × Eureka!
0 Votes
6 Answers
510 Views
0 Votes 6 Answers 510 Views
10 months ago
0 Votes
0 Answers
446 Views
0 Votes 0 Answers 446 Views
Task.upload_artifact( self=task, name="Dataframe", # artifact_object=df1, artifact_object="data/file.feather", extension_name=".feather", metadata=meta_dict,...
10 months ago
0 Votes
8 Answers
513 Views
0 Votes 8 Answers 513 Views
Hi everyone. I'm trying to run a ClearML server behind a Cloudflare Zero Trust proxy with a service token for authorization. I can successfully access the se...
10 months ago
0 Votes
6 Answers
493 Views
0 Votes 6 Answers 493 Views
I'm getting upload errors when uploading artifacts (using GCS) but it uploads for datasets works just fine. clearml.storage - ERROR - Failed uploading: HTTPS...
10 months ago
0 Votes
3 Answers
499 Views
0 Votes 3 Answers 499 Views
Is it possible to embed a streamlit app in a ClearML report? Are there other ways to integrate streamlit apps?
11 months ago
0 Hi Everyone. I'M Trying To Run A Clearml Server Behind A

OK, thanks. I'll look into it. I might be able to handle the injections via some cloudflare rules.

10 months ago
0 Hi Everyone. I'M Trying To Run A Clearml Server Behind A

I'm getting "Object of type "StrictSession" is not callable"

10 months ago
0 Hi Everyone. I'M Trying To Run A Clearml Server Behind A

I'm looking at from clearml.backend_api.session.client import APIClient rigt now.

10 months ago
0 Is There An Elegant Way Of Accessing A Specific File Entry From A Dataset Without Using Io Operations To Locate The File From The Cache Folder? The File Is Intended To Be Used To Create A Dataframe. At The Moment I'M Using The Code Below. The Problem Is T

Thanks. @<1584716355783888896:profile|CornyHedgehog13> , I considered this. is the chunk order deterministic? As in, can I rely on chunk [0] always referring to the same file object if additional files are added?

10 months ago
0 I'M Getting Upload Errors When Uploading Artifacts (Using Gcs) But It Uploads For Datasets Works Just Fine.

I can reproduce the problem in a notebook and post it on Github if that helps.

10 months ago
0 I'M Getting Upload Errors When Uploading Artifacts (Using Gcs) But It Uploads For Datasets Works Just Fine.

Also have clearml-agent 1.5.2, clearml-serving 1.3.0 and clearml-session 0.4.0

10 months ago
10 months ago
0 Is It Possible To Embed A Streamlit App In A Clearml Report? Are There Other Ways To Integrate Streamlit Apps?

I'm currently running a self-hosted deployment. Can the host server's service agent be used?

11 months ago
0 Is There An Elegant Way Of Accessing A Specific File Entry From A Dataset Without Using Io Operations To Locate The File From The Cache Folder? The File Is Intended To Be Used To Create A Dataframe. At The Moment I'M Using The Code Below. The Problem Is T

I found this... It works as long as the initial data files uploaded are converted to csv files (e.g., excel, .sav, .spss etc).

preprocess_task = Task.get_task(task_id='xxx123')
local_csv = preprocess_task.artifacts['data'].get_local_copy()
10 months ago