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
MammothParrot39
Moderator
14 Questions, 34 Answers
  Active since 13 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

34 × Eureka!
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
Hello everyone! I'm uploading a dataset to the server. During dataset.finalize() I get the following error. Could you please advise what could be the problem...
2 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Is data versioning available in the accessible version of clearml? I want to create a structure like this.
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hello everyone, can you please tell me where can I set display options for clearml debug samples? I only have the last 3 iterations displayed?
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hello everyone, are there any examples of integrating Clearml and VAST.AI . The goal is to have agents that will lift containers in a vast.AI environment on ...
2 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
2 years ago
0 Votes
13 Answers
2K Views
0 Votes 13 Answers 2K Views
2 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
from > allegroai > import > FrameGroup, SingleFrame The documentation lists the allegroai library. I really can't understand how can I install it) Could you ...
2 years ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
2 years ago
0 Votes
3 Answers
2K Views
0 Votes 3 Answers 2K Views
Hi everyone. Please tell me how I can rename the task so that it appears the same in the UI? CLF Datasets: Main - original name of task, but I tried to chang...
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi everyone. How can I get metadata for datasets from an entire project? I see the opportunity to work with only one dataset
2 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
2 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
Hello everyone! I ran a test experiment and got an error. I'm running on an M1 mac. Worker local without GPU. Has anyone already solved this problem? ERROR: ...
2 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
2 years ago
0 Hi Everyone! How Can I Create A Pipeline In Draft Mode? In Draft Mode, I Need To Install A Shell Script And Pass Additional Parameters. In Addition, I Would Like To Be Able To Remotely Copy Pipelines By Launching Pipelines With Different Parameters

I create the draft mod in the picture above by calling pipe.create_draft() But this does not start the execution of the pipeline, but immediately transfers it to draft mode
image

2 years ago
0 Hi Everyone. Please Tell Me How I Can Rename The Task So That It Appears The Same In The Ui? Clf Datasets: Main - Original Name Of Task, But I Tried To Change To Cls: Main

@<1523701070390366208:profile|CostlyOstrich36> Yes, I changed the name in manual mode, where this option is provided, but the name of the block did not change

2 years ago
0 Hi Everyone! I Created A Pipeline From One Block, Passed The Initial Parameters. Please Tell Me, Is It Possible To Make A New Launch Of The Pipeline, But With Different Parameters, Just Like In The Draft Mode Of Usual Experiments. Globally, I Want To Init

@<1523701070390366208:profile|CostlyOstrich36>
It's strange, during the first remote start I could set the options. But now I can't again. With what it can be connected?
image

2 years ago
0 Hello Everyone, While Calling Get_Local_Copy Of The Dataset From The Fileserver, I Get The Path To The Local Copy, But The Files Are Not Downloaded And The Folder Is Empty. Tell Me What Could Be The Problem. I Don'T Get Any Additional Errors Or Warnings.

@<1523701070390366208:profile|CostlyOstrich36> Yes, sure

import pandas as pd
import yaml
import os
from omegaconf import OmegaConf
from clearml import Dataset

config_path = 'configs/structured_docs.yml'

with open(config_path) as f:
    config = yaml.full_load(f)

config = OmegaConf.create(config)
path2images = config.data.images_folder


def get_data(config, split):
    path2annotation = os.path.join(config.data.annotation_folder, f"sample_{split}.csv")
    data = pd.read_csv(path2an...
2 years ago
0 Hi Everyone. How Can I Get Metadata For Datasets From An Entire Project? I See The Opportunity To Work With Only One Dataset

@<1523701070390366208:profile|CostlyOstrich36> I did it,, but I think its not optimal))

This is how I got information about FieldNet project:
from clearml import Task, Dataset

all_taks = Task.get_tasks()

FieldNet_tasks = {}
for task in all_taks:
name = task.name
task_id = task.task_id
if 'FieldNet' in name:
if name in FieldNet_tasks:
# get last dataset version
task_old_version = Task.get_task(task_id=FieldNet_tasks[name]).get_parameters_as_di...

2 years ago
2 years ago
0 From

CostlyOstrich36 Oh, ok) Thanks!
May be you know?! Is data tagging available to view summary statistics in the free version?

2 years ago
2 years ago
0 Hello Everyone! I'M Uploading A Dataset To The Server. During Dataset.Finalize() I Get The Following Error. Could You Please Advise What Could Be The Problem, Where Should I Start Looking?

@<1523701070390366208:profile|CostlyOstrich36>
One more moment. When I look at the dataset in web UI, I see like dataset switched to final
image

2 years ago
0 Hi Everybody! I'M Running An Example Pipeline From A Web Ui. I Notice Very Strange Behavior. After The First Local Run, I Can Create A New Run And Pass Initialization Parameters There, But After A Successful Run, I Lose The Ability To Create New Runs With

@<1593051292383580160:profile|SoreSparrow36> @<1578555761724755968:profile|GrievingKoala83>
@<1523701435869433856:profile|SmugDolphin23>
I found that if you go into the details of the pipeline, you can copy it manually and it will go into edit mode, where you can change the parameters manually

2 years ago
0 Hello Everyone, While Calling Get_Local_Copy Of The Dataset From The Fileserver, I Get The Path To The Local Copy, But The Files Are Not Downloaded And The Folder Is Empty. Tell Me What Could Be The Problem. I Don'T Get Any Additional Errors Or Warnings.

@<1523701435869433856:profile|SmugDolphin23>
I rechecked on single files, creating new datasets, and everything works properly. I tried to create dataset using original data, and I got the following logs. Could you suggest what could be causing this?
Uploading dataset changes (1497 files compressed to 9.07 MiB) to None
`2023-05-12 08:46:03,114 - clearml.storage - ERROR - Exception encountered while uploading Failed uploading object /addudkin2/.dataset...

2 years ago
0 Hello Everyone! I'M Uploading A Dataset To The Server. During Dataset.Finalize() I Get The Following Error. Could You Please Advise What Could Be The Problem, Where Should I Start Looking?

@<1523701070390366208:profile|CostlyOstrich36> Then when I try to get the dataset I get the following error

Failed getting object size: RetryError('HTTPSConnectionPool(host='files.clearml.dbrain.io', port=443): Max retries exceeded with url: /Labeled%20datasets/.datasets/printed%20multilang%20crops/printed%20multilang%20crops.1e76fd4ad77f4d2790e4acf1c8241c59/artifacts/state/state.json (Caused by ResponseError('too many 503 error responses'))')
Could not download 
 , err: H...
2 years ago
0 Hello Everyone, Are There Any Examples Of Integrating Clearml And

@<1523701070390366208:profile|CostlyOstrich36> Yes
Clearml only has the ability to integrate with AWS?

2 years ago
Show more results compactanswers