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, I'M Trying To Clone And Run The

Hi all,
I'm trying to clone and run the preprocessing task from urbansounds8k example project. The download data task worked but getting this error in preprocessing task.

Traceback (most recent call last):
  File "/root/.clearml/venvs-builds/3.9/task_repository/clearml-blogs/urbansounds8k/preprocessing.py", line 150, in <module>
    datasetbuilder.build_dataset()
  File "/root/.clearml/venvs-builds/3.9/task_repository/clearml-blogs/urbansounds8k/preprocessing.py", line 110, in build_dataset
    for i, (_, data) in tqdm(enumerate(self.metadata.iterrows())):
AttributeError: 'PosixPath' object has no attribute 'iterrows'

According to the docs, task.artifacts['<artifact>'].get() should be returning a python object, in this case a dataframe, not sure why the error says it's a Path variable.

Could you please help me with this?

Thanks 🙂

  
  
Posted one year ago
Votes Newest

Answers 4


Hey @<1523701435869433856:profile|SmugDolphin23> ,
Thanks for your response !
Code : line 110 in None

ClearML version: I'm using app.clear.ml itself. And my agent version is clearml-agent 1.5.2

  
  
Posted one year ago

Hi @<1587615463670550528:profile|DepravedDolphin12> ! get() should indeed return a python object. What clearml version are you using? Also, can you share the code?

  
  
Posted one year ago

Hi @<1587615463670550528:profile|DepravedDolphin12> , can you please provide a link to the doc you read?

  
  
Posted one year ago

Example Project: None
Docs where it is mentioned about accessing artifacts: None

  
  
Posted one year ago