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
Is There A Way To Upload An Roc Curve With Its Underlying Data? The Use-Case: I Have Trained Several Models And I Want To Compare Their Different Working Points And Curves

Is there a way to upload an ROC curve with its underlying data?
The use-case: I have trained several models and I want to compare their different working points and curves

  
  
Posted 3 years ago
Votes Newest

Answers


found it.

` fpr, tpr, thresholds = my_roc_calc(my_input)
t = Task.get_task(my_task_id)

t.get_logger().report_scatter2d("ROC", "MyModel",iteration=1, scatter=list(zip(fpr, tpr))) `

  
  
Posted 3 years ago
697 Views
1 Answer
3 years ago
one year ago
Tags