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
QuaintRobin7
Moderator
1 Question, 4 Answers
  Active since 09 May 2023
  Last activity one year ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
7 Answers
786 Views
0 Votes 7 Answers 786 Views
Hi, trying to report a matplotlib figure with report_interactive=True . Whenever I add annotations to the plot, it’s reporting it to the debug samples sectio...
one year ago
0 Hi, Trying To Report A Matplotlib Figure With

it actually goes into debug samples so its working as expected. I guess there is nothing we can do about it then?

one year ago
0 Hi, Trying To Report A Matplotlib Figure With

I just wanted it to go to the plots section

one year ago
0 Hi, Trying To Report A Matplotlib Figure With
from clearml import Task
from matplotlib import pyplot as plt
import numpy as np

task = Task.init(
    project_name="Example",
    task_name="Example",
    auto_connect_frameworks={"matplotlib": False},
)
logger = task.get_logger()

fpr, tpr, thresholds = np.random.rand(3, 10)

fig, ax = plt.subplots(1, 1)
ax.plot(fpr, tpr, "o-", label="ROC curve")
ax.plot(np.linspace(0, 1, 10), np.linspace(0, 1, 10), label="diagonal", linestyle="--")
for x, y, txt in zip(fpr, tpr, thresholds):
    ax....
one year ago
0 Hi, Trying To Report A Matplotlib Figure With

thank you for the reply, i think this will do 🙂

one year ago