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
VictoriousFish46
Moderator
2 Questions, 3 Answers
  Active since 04 June 2025
  Last activity 2 months ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
0 Answers
323 Views
0 Votes 0 Answers 323 Views
3 months ago
0 Votes
5 Answers
240 Views
0 Votes 5 Answers 240 Views
Does anyone know why uploading a dataset from your local machine sets a localhost reference in the dataset output? This makes it so the remotely running task...
2 months ago
0 Does Anyone Know Why Uploading A Dataset From Your Local Machine Sets A

The data is in my laptop in a folder called fashion_mnist .
The contents of my clearml.conf are produced from the values passed to the helm chart as such

agentk8sglue:
  apiServerUrlReference:  "
"
  fileServerUrlReference: "
"
  webServerUrlReference:  "
"
  extraEnvs:
    - name: CLEARML_AGENT_UPDATE_VERSION
      value: "==1.9.2"
    - name: CLEARML_API_HOST
      value: "
"
    - name: CLEARML_FILES_HOST
      value: "
"...
2 months ago
0 Does Anyone Know Why Uploading A Dataset From Your Local Machine Sets A

I thought the dataset address was referenced by the dataset name not the clearml.conf? Like the dataset is getting pulled in the code by this command

data_path = Dataset.get(dataset_name="Fashion MNIST", alias="Fashion MNIST").get_local_copy()

So I would assume the code would use the clearml.conf of the running environment?

2 months ago
0 Does Anyone Know Why Uploading A Dataset From Your Local Machine Sets A

My local clearml config on my laptop is set to this

api {
  web_server: 

  api_server: 

  files_server: 

  credentials {
    "access_key" = "***"
    "secret_key" = "***"
  }
}
2 months ago