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
Well To Be Honest, We Kind Of Thought It'S Redundant. Basically Storing Artifacts In Experiments And Having Them Retrieved Quickly From The Code Itself Was Way More Convenient For Us Then To Manually Have To Do Clone/Pull Of The Data... Example: Create Da

Well to be honest, we kind of thought it's redundant.
Basically storing artifacts in experiments and having them retrieved quickly from the code itself was way more convenient for us then to manually have to do clone/pull of the data...
Example:
Create dataset:

task = Task.init("Dataset Sample", "version 1") task.upload_artifact("dataset_folder", './my_local_folder') print('task.id = {}'.format(task.id))
Get dataset in runtime:

dataset_task = Task.get_task(task_id='my_task_id') my_local_path = dataset_task.artifacts['dataset_folder'].get()

  
  
Posted 4 years ago
Votes Newest

Answers

672 Views
0 Answers
4 years ago
one year ago
Tags