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
ExhilaratedLizard23
Moderator
2 Questions, 2 Answers
  Active since 31 January 2024
  Last activity 5 months ago

Reputation

0

Badges 1

2 × Eureka!
0 Votes
3 Answers
570 Views
0 Votes 3 Answers 570 Views
5 months ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hiya guys, a few quick questions The clearML server (not the self-hosted one), is there somewhere I can read the ToS that might answer the following question...
one year ago
0 Hey Guys. Ive Uploaded A Dataset (Lets Call It Total) And Then I Want To Make A Train / Test Split Of It That Refers Back To Total Dataset. My Files Are Stored In S3 So Clearml Just Points To The External Files. But If I Link The Train Back To The Total

Sure,

# Create a new ClearML dataset with S3 output storage
dataset = Dataset.create(
    dataset_project=cfg.PROJECT_NAME,
    dataset_name=folder_name,
    output_uri=cfg.S3_BUCKET_URI,
)

# Dictionary to store S3 URLs mapped by `id`
s3_urls = {}

# Iterate through rows to map `id` → S3 URL
for idx, row in metadata_df.iterrows():
    audio_path = row.get("stored_filename")  # Ensure column exists
    if not isinstance(audio_path, str) or not audio_path.strip():
        print(f"Skippi...
5 months ago