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
WackyRabbit7
Moderator
73 Questions, 550 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

533 × Eureka!
0 Using

Loading part from task B:
` def get_models_from_task(task: clearml.Task, model_artifact_substring: str = 'iter_') -> dict:
"""
Extract all models saved as artifacts with the specified substring

:param task: Task to fetch from
:param model_artifact_substring: Substring for recognizing models among artifacts
:return: Mapping between iter number and model instance
"""

# Extract models from task (models are named iter-XXX where XXX is the iteration number)
model_...
2 years ago
0 Using

I double checked that the task object is the correct one

2 years ago
0 Using

task here is a ClearML task object

2 years ago
0 Using

For example, this is one execution:

2 years ago
0 Using

I am noticing that the files are saved locally, is there any chance that the files are over-written during the run or get deleted at some point and then replaced?
Yes they are local - I don't think there is a possibility they are getting overwritten... But that depends on how clearml names them. I showed you the code that saves the artifacts, but this code runs multiple times from a given template with different values - essentially it creates like 10 times the same task with different param...

2 years ago
0 Using

CostlyOstrich36

2 years ago
0 Using

💪

2 years ago
0 Using

I will

2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

is it possible to access the children tasks of the pipeline from the pipeline object?

2 years ago
2 years ago
0 How Come

the ability to exexute without an agent i was just talking about thia functionality the other day in the community channel

2 years ago
0 I'M Running

I also ran it without $(pwd) on the Create Clearml task templates section, I added it because of CostlyOstrich36 's comments but it didn't help

2 years ago
0 Where Can I Find A More Extensive Documentation Of Serving? I'M Looking For

actually i was thinking about model that werent trained uaing clearml, like pretrained models etc

2 years ago
3 years ago
0 Executed From Within A Pipelinecontroller Task, What Possible Reason Does

Maybe the case is that after start / start_locally the reference to the pipeline task disappears somehow? O_O

2 years ago
0 I Have A Production Inference Pipeline Which I Want To Continuously Test On My Github To Make Sure It Doesn'T Break As We Move Forward. The Ideal Scenario For Me Is To Use

Gotcha, didn't think of an external server as Service Containers are part of Github's offering, I'll consider that

2 years ago
0 Unrelated Problem (Or Is It?) The Clearml'S Built In Cleanup Service Fails

Let's take a step back. Let's remove the clearml-services from the docker compose for a second, and run it manually (then you can control everything). Once you have it running manually, let's try to replicate the setup back to the docker compose, make sense ?

I'd prefer not to docker-compose down as researchers are actively working on it, what do you say that I will manually kill the services agent and launch one myself?

2 years ago
0 Using

Did not solve this

2 years ago
0 Question About The File Server. Currently, We Have A Machine With Minio Installed, And All File Communication Is Made Using The Minio Sdk Client. [Minio Is Just Like An S3 Bucket, Fully Compliant With S3 Protocol]. In The Examples I'Ve Seen The

Continuing on this discussion... What is the relationship between configuring files_server and all the rest we just talked about and the the default_output_uri ?

3 years ago
Show more results compactanswers