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
CostlyOstrich36
Moderator
0 Questions, 4210 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0
0 Hey All, I Have A Question That Might Have Been Asked Before But I Can'T Find An Answer On This Slack Channel Or The Github So I Hope Somebody Can Help Me. I Have Created A Dataset Via The Python Sdk With A Local Path As The Output Uri Like So:

Hi @<1655381985293504512:profile|LividGorilla28> , this is because your browser cannot show local files as it is a sandbox environment. Opening a new tab and going directly to a local file by pasting the path is the only way to view images that are saved locally.

The correct way is to store it on some storage solution such as s3/gcp/minio which can serve the data to the browser

one year ago
0 Im Trying To Run This Exmple :

It looks as it is running, did the status of the experiment change?

4 years ago
0 Hey Clearml, Pipeline From Tasks: Following This Example

Can you provide a self contained contained snippet that reproduces this behavior?

2 years ago
0 Im Trying To Run This Exmple :

Can you please provide a shareable link?

4 years ago
0 Hi, I'M Conceptually Struggling To Understand How To Get My Models To Be Saved Permanently By My Self-Hosted Clearml Server. As It Stands Now, When I Train A Model Using A Clearml-Agent, The Model Checkpoints Are Being Logged By Clearml In The Dashboard,

Try adding the following to your Task.init()

task = Task.init(project_name='<PROJECT_NAME>', task_name='<TASK_NAME>', output_uri=True)
Another option that will solve the issue as well is editing your ~/clearml.conf and changing the following section sdk.development.default_output_uri to point to your fileserver/hosting

3 years ago
0 If You Rely On Task To Automatically Upload Artifacts, It Seems You Cannot Retrieve Them Using

TrickyRaccoon92 , Hi!

Yes I believe this is the intended behavior. Since if you upload automatically you can upload many artifacts during a single run, whereas when you upload manually you create the object yourself.

4 years ago
0 Hi All

Hi @<1523704667563888640:profile|CooperativeOtter46> , I think this is what you're looking for:
None

2 years ago
0 Hi Team,I Am Doing Retraining Of The Model Once New Data

Can you please elaborate further or add some information on how you've reached this situation?

2 years ago
0 I Have The User/Pass Set Up On The

Can you also add a full log of the run that was showing the git pass in the startup print?

11 months ago
0 Hi All - I Have A Large Dataset And Have Preprocessed It And Saved Each Item In .Pt Files, Which Are Loaded Using

Hi @<1724960464275771392:profile|DepravedBee82> , you have the auto_connect_frameworks parameter in Task.init() , this way you can disable the auto connection to Pytorch
None

11 months ago
0 Hi Everyone! I'M Looking For A Way To Consolidate Multiple Workspaces Of 3 Users In My Company. Is It Possible? If Yes, How? The Objective Is To Have All The Data (Experiments, Models Metrics...) From All Users Into A Single User With Subscription.

I don't think there is any out of the box method for this. You can extract everything using the API from one workspace and repopulate it in another workspace also using the APIs.

6 months ago
0 I Have A Project Which Is Hidden, How Do I Unhide It?

The project should have a system tag called 'hidden'. If you remove the tag via the API ( None ) that should solve the issue.

How was the project turned to hidden?

one year ago
0 Hi I’M Trying Out Pipeline Controller From Tasks. I Was Not Able To Understand Why My Code Results In Just One Task(The First One) In The Pipeline.

Hi UpsetBlackbird87 ,
If you're in the pipelines UI, you can switch to the detailed view and you can see each step of the pipeline as a node 🙂
You can see an example here:
https://clear.ml/docs/latest/docs/pipelines/pipelines

3 years ago
0 I'Ve Had This Bug Where Every Few Weeks All My Current Running Experiments Are Stopped And Then Deleted. This Has Now Happend Like 3-4 Times. I Dont Understand What Is Causing It. Model Files, Debug Images Are Saved In Fileserver Folder, But The Task Itse

Hi @<1590514584836378624:profile|AmiableSeaturtle81> , I'm guessing it's a self deployed server. What version are you on? Did you ever see any errors/issues in mongodb/elastic?

Do you mean that ALL experiments are being deleted from all projects?

one year ago
0 Another Question: How Can I Set The Fileserver Ip? E.G. I Want The Artifact Locations To Point To My Proxy Server, So That I Can Support Ssl

The cool thing is that you can also configure this from code as well 🙂
One example is:
https://clear.ml/docs/latest/docs/references/sdk/task#taskinit
Task.init(...,output_uri="<URL_TO_BUCKET>")

3 years ago
Show more results compactanswers