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
Trying To Access The Csv File Uploaded On The Clearml Dataset In My Local Device Is Giving Me Some Errors

trying to access the CSV file uploaded on the clearML dataset in my local device is giving me some errors

  
  
Posted one year ago
Votes Newest

Answers 16


just do:
import os.path as op dataset_folder = Dataset.get(dataset_id="...").get_local_copy() csv_file = op.join(dataset_folder, 'salary.csv')

  
  
Posted one year ago

What is the dataset URL you see in the UI? If you go to the dataset, there should be a view to the dataset link

  
  
Posted one year ago

I am trying to access the dataset by the below code

  
  
Posted one year ago

I am storing it here by the below code

  
  
Posted one year ago

It looks like you can't access the file due to permissions. And in the agent run there is no such file. How are you storing it and how are you trying to fetch it in code during the agent run?

  
  
Posted one year ago

so how to get the path for the file itself not all the files? 😓

  
  
Posted one year ago

ok it works thank you

  
  
Posted one year ago

You put it there 🙂 so the assumption you know what you are looking for, or use glob? wdyt?

  
  
Posted one year ago

I don't understand what you mean by that

  
  
Posted one year ago

You've hardcoded salary.csv into your code

  
  
Posted one year ago

At least from the log of the agent failure

  
  
Posted one year ago

Click on the 'Task information ->' at the bottom of the right window. This will take you to the task object in the system. Then go to artifacts.

  
  
Posted one year ago

WickedBee96 the return value of dataset.get_local_copy is the Folder where all your files are located, Not the filename itself 🙂

  
  
Posted one year ago

is it this? I can copy a URL from here

  
  
Posted one year ago

where to find it?

  
  
Posted one year ago

image

  
  
Posted one year ago
599 Views
16 Answers
one year ago
21 days ago
Tags