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
ThoughtfulElephant4
Moderator
3 Questions, 17 Answers
  Active since 24 January 2023
  Last activity one year ago

Reputation

0

Badges 1

17 × Eureka!
0 Votes
5 Answers
650 Views
0 Votes 5 Answers 650 Views
one year ago
0 Votes
1 Answers
468 Views
0 Votes 1 Answers 468 Views
Hi All, Does ClearML has a nodejs sdk similar to python sdk.
9 months ago
0 Votes
26 Answers
619 Views
0 Votes 26 Answers 619 Views
one year ago
0 Hi All, We Have A Self Hosted Clearml Server, My Colleague Uploaded A Dataset From His Machine And When I Try To Clone And Enqueue The Dataset Into Different Project From My Machine The Task Gets Failed Prompting "The System Cannot Find The File Specified

Hi @<1523701070390366208:profile|CostlyOstrich36> Clearml server is on aws, It created a dataset artifact when my colleague uploaded it then when I try to clone and enqueue, it fails.

one year ago
0 Hi All, We Have A Self Hosted Clearml Server, My Colleague Uploaded A Dataset From His Machine And When I Try To Clone And Enqueue The Dataset Into Different Project From My Machine The Task Gets Failed Prompting "The System Cannot Find The File Specified

Hi @<1523701070390366208:profile|CostlyOstrich36> here is the snippet

from clearml import Task, 
Dataset import global_config 
from data import database 

task = Task.init( project_name=global_config.PROJECT_NAME, task_name='get data', task_type='data_processing', reuse_last_task_id=False ) 

config = { 'query_date': '2022-01-01' } task.connect(config) 

# Get the data and a path to the file query = 'SELECT * FROM asteroids WHERE strftime("%Y-%m-%d", `date`) <= strftime("%Y-%m-%d", "{...
one year ago
0 Hi All, We Have A Self Hosted Clearml Server, My Colleague Uploaded A Dataset From His Machine And When I Try To Clone And Enqueue The Dataset Into Different Project From My Machine The Task Gets Failed Prompting "The System Cannot Find The File Specified

Execution log

from clearml import Dataset

ds = Dataset.create(dataset_project='Asteroid_Solution/.datasets/raw_asteroid_dataset', dataset_name='raw_asteroid_dataset', dataset_version='None')
ds.add_files(
    path='/tmp/nasa.csv', 
    wildcard=None, 
    local_base_folder=None, 
    dataset_path=None, 
    recursive=True
)
ds.upload(
    show_progress=True, 
    verbose=False, 
    output_url=None, 
    compression=None
)
ds.finalize()
one year ago
one year ago
one year ago
0 Hi Everyone, I Was Trying To Build An Image Using Clearml Server Dockerfile ,I Was Getting The Following Error, Failed To Compute Cache Key: "/Docker/Build/Internal_Files/Clearml_Subpath.Conf.Template" Not Found: Not Found I Tried Multiple Solutions From

Hi @<1523701205467926528:profile|AgitatedDove14> the above error got resolved but upon building the image I got this (Node.js version v12.21.0 detected.
The Angular CLI requires a minimum Node.js version of either v14.15, or v16.10. ) should I update nodejs in centos image ? can you provide some insights on this.

one year ago