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
Answered
Hi there :slightly_smiling_face: ! I have a little issue. Here's a snippet: ``` task = Task.get_task(task_id=experiment_id) models = task.get_models()["output"] for m in models: print(f"{m.url}")``` doing that, I get a list of URLs of

Hi there 🙂 !
I have a little issue. Here's a snippet:

    task = Task.get_task(task_id=experiment_id)

    models = task.get_models()["output"]
    for m in models:
        print(f"{m.url}")

doing that, I get a list of URLs of all output models shown in the UI for that task, but, each URL is repeated 3 times, just like if multiple Model() in the list share the same artifact model file. And, looking in the Model panel in the UI, it seems that indeed there are 3 times more models for that task than shown in the Task>Artifacts>Output Models panel.

Why is that?

  
  
Posted one month ago
Votes Newest

Answers


Hi @<1716263152817016832:profile|TartHare54> , can you perhaps include some output of how it looks in the UI and in the result of printing the entire output section of the models?

  
  
Posted one month ago
167 Views
1 Answer
one month ago
one month ago
Tags
Similar posts