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

Reputation

0

Badges 1

12 × Eureka!
0 Votes
3 Answers
485 Views
0 Votes 3 Answers 485 Views
Hey again, so i asked about archiving a model via code, and was given the answer about archiving tasks which will indeed archive my model but assuming i'm re...
3 years ago
0 Votes
17 Answers
577 Views
0 Votes 17 Answers 577 Views
Hey i was wondering if i want to setup deploy a clearml server, how would i go about providing credentials for say, the mongodb to the system? the hostname e...
3 years ago
0 Votes
6 Answers
498 Views
0 Votes 6 Answers 498 Views
Hey, is there a way to disable going to the demo server not from the env variable? from code or something.
3 years ago
0 Hey I Was Wondering If I Want To Setup Deploy A Clearml Server, How Would I Go About Providing Credentials For Say, The Mongodb To The System? The Hostname Env Var Is A Connection String?

well no… the parser doesn’t seem to match what the mongo engine expects when passing a uri with username and password, so unless i’m missing something there’s no way to connect to a remote mongo that needs a user/pass to authenticate

3 years ago
0 Hey I Was Wondering If I Want To Setup Deploy A Clearml Server, How Would I Go About Providing Credentials For Say, The Mongodb To The System? The Hostname Env Var Is A Connection String?

ok it seems the string you pass in the env variables has to be a uri safe string, after passing the string in https://www.urlencoder.io/ i managed to not get that exception…

3 years ago
0 Hey I Was Wondering If I Want To Setup Deploy A Clearml Server, How Would I Go About Providing Credentials For Say, The Mongodb To The System? The Hostname Env Var Is A Connection String?

[{{"[" ["^"]} Group:({{Group:({{{{{W:(\, \[]-...) | Re:('\\\\0?[xX][0-9a-fA-F]+')} | Re:('\\\\0[0-7]+')} | !W:(\])} Suppress:("-")} {{{W:(\, \[]-...) | Re:('\\\\0?[xX][0-9a-fA-F]+')} | Re:('\\\\0[0-7]+')} | !W:(\])}}) | {{{W:(\, \[]-...) | Re:('\\\\0?[xX][0-9a-fA-F]+')} | Re:('\\\\0[0-7]+')} | !W:(\])}}}...)}, "]"]is the “grammer” for the parser, and it doesn’t seem to have a literal @ in it… unless i’m missing something

3 years ago
0 Hey I Was Wondering If I Want To Setup Deploy A Clearml Server, How Would I Go About Providing Credentials For Say, The Mongodb To The System? The Hostname Env Var Is A Connection String?

` version: "3.6"
services:

apiserver:
command:
- apiserver
container_name: clearml-apiserver
image: allegroai/clearml:latest
restart: unless-stopped
volumes:
- /opt/clearml/logs:/var/log/trains
- /opt/clearml/config:/opt/trains/config
- /opt/clearml/data/fileserver:/mnt/fileserver
depends_on:
- redis
- elasticsearch
- fileserver
environment:
TRAINS_ELASTIC_SERVICE_HOST: elasticsearch
TRAINS_ELASTIC_SERVICE_PORT: 9200...

3 years ago
0 Hey Again, So I Asked About Archiving A

Awesome, Thanks! if i may ask another question, is there a way to view all the models a in project? and maybe filter by system_tags to find archived ones?

3 years ago
0 Hey I Was Wondering If I Want To Setup Deploy A Clearml Server, How Would I Go About Providing Credentials For Say, The Mongodb To The System? The Hostname Env Var Is A Connection String?

SuccessfulKoala55 So i tried what you suggested but i’m getting
pyparsing.ParseException: Expected end of text, found '@' (at char 56), (line:1, col:57)Any idea whats the issue? i supplied the env variable via docker compose file with the same standard as the one you posted

3 years ago
0 Hey, Is There A Way To Disable Going To The Demo Server

I know, but if there’s an issue with the provided credentials, will it default to the demo server?

3 years ago
0 Hey, Is There A Way To Disable Going To The Demo Server

Yea, i tried CLEARML_NO_DEFAULT_SERVER=True and it didn’t work, i assumed it had something to do with my env setup which is a bit problematic, anyhow, assuming True is a valid value, i can see. what FrothyDog40 suggested about how it fails on bad/missing credentials 🙂

3 years ago