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
BrightDog7
Moderator
2 Questions, 3 Answers
  Active since 18 January 2025
  Last activity 7 months ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
5 Answers
690 Views
0 Votes 5 Answers 690 Views
7 months ago
0 Votes
3 Answers
648 Views
0 Votes 3 Answers 648 Views
7 months ago
0 Hi All! I Am Logging A Plot And I Am Having An Issue With Its Legend. When I Run The Code Myself It Appears As Expected (1St Image). When I Log It In Clearml The Legend Is Not Right (2Nd Image). The Code For Generating The Plot Is (Df Is A Pandas Datafram

Hi @<1523701205467926528:profile|AgitatedDove14> , many thanks for the answer! The data is not the same between the two plots, hence the change of the proportion. The issue is with the legend. When logged in clearML it does not appear properly, all points are labelled as “NNLs”

7 months ago
0 Hi All, I Have Deployed A Clearml Server On Linux Vm And I Am Having An Issue With Logging Plots. Specifically, A Plot Is Logged, But In The Ui It Does Not Load. The Developer Tools Provide The Following Error: “Failed To Load Resource: The Server Respon

All plots. This is how they’re logged:

from clearml import Task, Logger
import matplotlib.pyplot as plt
import numpy as np

# Initialize a ClearML task
task = Task.init(project_name="Demo Project", task_name="Plotting Example")

# Generate some dummy data
x = np.linspace(0, 10, 100)
y = np.sin(x)

# Create a plot
fig, ax = plt.subplots()
ax.plot(x, y, label='Sine Wave')
ax.set_title('Sine Wave Plot')
ax.set_xlabel('x')
ax.set_ylabel('sin(x)')
ax.legend()

# Use the logger to report the ...
7 months ago