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
Hi Everyone, I’M Reporting A Confusion Matrix Using Below Code.

Hi Everyone,
I’m reporting a confusion matrix using below code.

    clearml_logger.report_confusion_matrix(
        title="Confusion Matrix (Accuracy)",
        series="ignored",
        matrix=conf_df_percent,
        xaxis="Predicted Labels",
        yaxis="True Labels",
        xlabels=class_names,
        ylabels=class_names
    )

And this is what I see in UI.
Im able to see the x and y axis labels when I hover over the graph but if you see the labels are cut from left , I tried zooming in and out but it didn’t show full labels names. Could anybody tell me how can I fix it? Thanks!!!
image

  
  
Posted 3 months ago
Votes Newest

Answers

287 Views
0 Answers
3 months ago
2 months ago
Tags