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 one year ago

Reputation

0

Badges 1

34 × Eureka!
0 Votes
2 Answers
858 Views
0 Votes 2 Answers 858 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 ...
one year ago
0 Votes
1 Answers
906 Views
0 Votes 1 Answers 906 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?
one year ago
0 Votes
3 Answers
966 Views
0 Votes 3 Answers 966 Views
from > allegroai > import > FrameGroup, SingleFrame The documentation lists the allegroai library. I really can't understand how can I install it) Could you ...
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K 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: ...
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Is data versioning available in the accessible version of clearml? I want to create a structure like this.
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K 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...
one year ago
0 Votes
2 Answers
843 Views
0 Votes 2 Answers 843 Views
Hi everyone. How can I get metadata for datasets from an entire project? I see the opportunity to work with only one dataset
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
one year ago
0 Votes
13 Answers
883 Views
0 Votes 13 Answers 883 Views
one year ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
one year ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
one year ago
0 Votes
3 Answers
869 Views
0 Votes 3 Answers 869 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...
one year ago
0 Votes
1 Answers
823 Views
0 Votes 1 Answers 823 Views
one year 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...
one year ago
0 Greetings Everyone, In The Course Of My Work, I Utilize A Particular Library That Necessitates More Than Just A Simple Clone And Dependency Installation Procedure. It Also Requires The Cloning Of An Additional Repository, Along With Its Installation, And

Thank you for your response @<1523701205467926528:profile|AgitatedDove14> . I will definitely try the solutions you described above. Could you please advise if it is possible to execute the "bash.sh" script directly before the environment setup stages for reproducing the experiment? The repository setup involves downloading resources from AWS. While creating a container that incorporates my requirements would help solve this problem, I am interested in finding a more flexible approach.

one year ago
0 Greetings Everyone, In The Course Of My Work, I Utilize A Particular Library That Necessitates More Than Just A Simple Clone And Dependency Installation Procedure. It Also Requires The Cloning Of An Additional Repository, Along With Its Installation, And

@<1523701205467926528:profile|AgitatedDove14> The bash script does the unloading of the necessary resources from aws and sets the environment variable
aws s3 cp ..... --recursive
export PYTHONPATH=" "
All commands can be added to the generated docker image, but you will have to change the project structure

one year ago
Show more results compactanswers