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
1 Answers
979 Views
0 Votes 1 Answers 979 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_...
2 years ago
0 Votes
0 Answers
933 Views
0 Votes 0 Answers 933 Views
I am thinking it could have to do with versioning on dependencies maybe?
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
whats the preferred way to enable this after Task.create?
2 years ago
0 Votes
0 Answers
934 Views
0 Votes 0 Answers 934 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: "*...
2 years ago
0 Votes
22 Answers
1K Views
0 Votes 22 Answers 1K Views
so from what I can tell using Task.create does not include auto logging
2 years 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

2 years ago
2 years 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

2 years 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

2 years 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

2 years ago
0 So From What I Can Tell Using

got it will try

2 years 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) ?

2 years ago
0 So From What I Can Tell Using

no longer using the create.

2 years 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?

2 years 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

2 years 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

2 years ago