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
Unanswered
Hey Everyone, I Am Facing A Weird Issue With A Docker Image. When I Use It As My Base_Docker, Clearml Basically "Opens A Terminal" Inside Of It And Does Not Continue Any Further. I Have Never Had This Behavior With Any Other Docker Image. With The Same Co


Hey @<1523701087100473344:profile|SuccessfulKoala55> , I played with the Dockerfile a bit but can't get it working. Locally, I can access the docker image and everything runs as expected, but if I create the ClearML task, it fails, at least with a new error. The Dockerfile looks like this:

Use the base image

FROM scrin/dev-spconv:latest

ENTRYPOINT ["/bin/bash"]

Install required Python packages

RUN pip install open3d
RUN pip install --no-index torch-scatter -f None
RUN pip install strictyaml
RUN pip install clearml
RUN pip install "boto3>=1.9"

Update package information (continue even if it fails)

RUN apt-get update || true

Install required system libraries

RUN apt-get install -y libx11-6
RUN apt-get install -y libgl1-mesa-glx

  
  
Posted 2 months ago
30 Views
0 Answers
2 months ago
2 months ago