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
ShinyPuppy47
Moderator
5 Questions, 12 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

12 × Eureka!
0 Votes
0 Answers
483 Views
0 Votes 0 Answers 483 Views
I am thinking it could have to do with versioning on dependencies maybe?
one year ago
0 Votes
22 Answers
514 Views
0 Votes 22 Answers 514 Views
so from what I can tell using Task.create does not include auto logging
one year ago
0 Votes
1 Answers
484 Views
0 Votes 1 Answers 484 Views
hey all getting this error pretty sprotically ile "/home/ubuntu/.clearml/venvs-builds/3.9/lib/python3.9/site-packages/clearml/task.py", line 1113, in output_...
one year ago
0 Votes
0 Answers
550 Views
0 Votes 0 Answers 550 Views
whats the preferred way to enable this after Task.create?
one year ago
0 Votes
0 Answers
496 Views
0 Votes 0 Answers 496 Views
creds are filled in like s3 { # S3 credentials, used for read/write access by various SDK elements # default, used for any bucket not specified below key: "*...
one year ago
0 So From What I Can Tell Using

SmugDolphin23 so I ran that above like
` task = Task.init(project_name=project, task_name='data_upload')
task.set_base_docker(
docker_image="nvidia/cuda:10.2-cudnn7-runtime-ubuntu18.04",
docker_arguments=docker_args,
)

task.execute_remotely(queue) `and it works good, except there still does not seem to be autologging or even capturing print statements on the remote execution

one year ago
0 So From What I Can Tell Using

got it will try

one year ago
0 So From What I Can Tell Using

hm SmugDolphin23 so I added this into the Task but I still do not get auto logging for a pytorch training task

one year ago
0 So From What I Can Tell Using

but now I am just getting into weird situations were it seems like .create has the docker stuff I need but not logs and .init has the logs but not docker

one year ago
0 So From What I Can Tell Using

unsure ya, I mean when I run the task logs do not get outputted into the clearml platform

one year ago
0 So From What I Can Tell Using

no longer using the create.

one year ago
0 So From What I Can Tell Using

so curious if this is just a me misuderstanding and not using the .init/.create properly?

one year ago
0 So From What I Can Tell Using

so that it takes the auto logging but still able to run the with the previous specifications

one year ago
one year ago
0 So From What I Can Tell Using

got it ya that makes sense. I was using .init which worked great but
needed to be able to pass docker_args into the container running the task. Only way I saw that possible was with .create would like to execute it remotely would like the auto logs

one year ago
0 So From What I Can Tell Using

got it sweet, so I need to use Task.create to run on custom containers... so would the workaround here running Task.create and then running Task.init(continue_last_task=task.id) ?

one year ago