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
Answered
Hi All

Hi all 🙂
Is it possible to create a clearml dataset where without actually uploading files? Say all my files are already scattered in some S3, they would be needlessly duplicated

  
  
Posted 8 months ago
Votes Newest

Answers 6


Does adding external files not upload them ti the dataset output_uri?

@<1523704667563888640:profile|CooperativeOtter46> If you are adding the links with add_external_files these files are Not re-uploaded

  
  
Posted 8 months ago

🙏

  
  
Posted 8 months ago

Hi @<1523704667563888640:profile|CooperativeOtter46> , I think this is what you're looking for:
None

  
  
Posted 8 months ago

thanks, I saw that. Does adding external files not upload them ti the dataset output_uri?

  
  
Posted 8 months ago

Do you see something in the documentation to indicate that?

  
  
Posted 8 months ago

        :param dataset_path: The location in the dataset where the file will be downloaded into.
            e.g: for source_url='
' and dataset_path='s3_files',
            'image.jpg' will be downloaded to 's3_files/image.jpg' (relative path to the dataset)
  
  
Posted 8 months ago