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
ScantMoth28
Moderator
7 Questions, 50 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

39 × Eureka!
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
additionally i'm wondering if you can configure the routes for the api, server and file server to be paths instead of sub-domains: i.e. http://clearml-server...
2 years ago
0 Votes
5 Answers
960 Views
0 Votes 5 Answers 960 Views
Wondering why this is the case when deploying the clearml server locally * Serving Flask app 'server' (lazy loading) * Environment: production WARNING: This ...
2 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
2 years ago
0 Votes
16 Answers
1K Views
0 Votes 16 Answers 1K Views
Hello everyone, I’m running ClearML using SageMaker and its strange i see no plots show up when i create a matplotlib plot after initializing my task, wonder...
one year ago
0 Votes
3 Answers
911 Views
0 Votes 3 Answers 911 Views
Hello ClearML community, I’m having an issue in upgrading my ClearML helm chart from version 4.2.1 -> 7.2.2. The problem seems to stem from the way init cont...
one year ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Just wanted to see is ChatGPT correct? 😂
one year ago
0 Votes
34 Answers
47K Views
0 Votes 34 Answers 47K Views
I'm running ClearML Server Locally using the docker-compose method as mentioned https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_linux_mac ...
2 years ago
0 Wondering Why This Is The Case When Deploying The Clearml Server Locally

from the clearml logs when setting up the clearml server using kubernetes

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

i'm looking at the server.py file and it doesn't have call = self. create_api_call(request)

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

SuccessfulKoala55 do you mean request_handlers.py

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

` [2022-08-18 20:58:49,892] [9] [INFO] [clearml.request_handlers] GET
[2022-08-18 20:58:49,895] [9] [INFO] [clearml.request_handlers] Basic NUtORklQWUIzM0tIVUFRNUI4SkM6eU4yUXE4RTNvWDlpYlBRVmF1NEpiQXZQMHlUdHozNUluZVY4ZkpuZXNTRnRYbmRlR3I=
[2022-08-18 20:58:49,904] [9] [INFO] [clearml.service_repo] Returned 200 for auth.login in 6ms
[2022-08-18 20:58:50,059] [9] [INFO] [clearml.request_handlers] GET
[2022-08-18 20:58:50,060] [9] [INFO] [clearml.request_handlers] Basic NUtORklQWUIzM0tIVUFRNUI4SkM...

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

i see what you are saying I dont thinl there would be anything on my system which might do that i can investigate

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

FLASK_DEBUG: "1" -> should 1 be a string or int?

2 years ago
0 Wondering Why This Is The Case When Deploying The Clearml Server Locally

AgitatedDove14 yes it is a flask warning, i'm wondering why the clearml server isn't setup with wsgi?

2 years ago
2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

bugs i understand are better than ones i dont lol

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

` from argparse import ArgumentParser

from flask import Flask

from apiserver.config_repo import config
from apiserver.server_init.app_sequence import AppSequence
from apiserver.server_init.request_handlers import RequestHandlers

app = Flask(name, static_url_path="/static")
AppSequence(app).start(request_handlers=RequestHandlers())

=================== MAIN =======================

if name == "main":
p = ArgumentParser(description=doc)
p.add_argument(
"--po...

2 years ago
0 I'M Running Clearml Server Locally Using The Docker-Compose Method As Mentioned

SuccessfulKoala55 thanks alot for your help i greatly appreciate it, i think you are right that there is something happening with the request, I did some checking i can get it running on another computer (my non work computer), so i think you are right there must be something happening with my work related computer which is causing this to occur 😕 I'll keep trying to drill down on this issue on my work computer to see what the difference is, but I can atleast proceed now to as i g...

2 years ago
0 Hi. I'M Encountering A Problem With

i.e.
Task.update_output_model(name="custom_model")

one year ago
0 Hello Everyone, I’M Running Clearml Using Sagemaker And Its Strange I See No Plots Show Up When I Create A Matplotlib Plot After Initializing My Task, Wondering If Theres A Solution To This?

%env CLEARML_WEB_HOST={-----}
%env CLEARML_API_HOST={-----}
%env CLEARML_FILES_HOST=undefined
%env CLEARML_API_ACCESS_KEY={-----}
%env CLEARML_API_SECRET_KEY={-----}

one year ago
0 Hello Everyone, I’M Running Clearml Using Sagemaker And Its Strange I See No Plots Show Up When I Create A Matplotlib Plot After Initializing My Task, Wondering If Theres A Solution To This?
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from clearml import Task

# Connecting ClearML with the current process,
# from here on everything is logged automatically
# Create a new task, disable automatic matplotlib connect
task = Task.init(project_name='Something', task_name='Something')

# Create plot and explicitly report as figure
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2  # 0 to 15 ...
one year ago
0 Hi. I'M Encountering A Problem With

you can use Task.update_output_model() to update the name of the output moel

one year ago
0 Hi. I'M Encountering A Problem With

ahh i see so one Task has multiple models that are trained

one year ago
Show more results compactanswers