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, After Upgrading To Clearml Sdk 1.6.0, I Am Getting Error When Trying To Work With Google Gcp, Debugging The Code I See This Line In Storagehelper.Check_Write_Permissions :

Hi,
After upgrading to clearml sdk 1.6.0, I am getting error when trying to work with google gcp,
Debugging the code i see this line in StorageHelper.check_write_permissions :
err_msg = 'Insufficient permissions ({} failed) for ' + base_urlThis line raise error every time:

mtd = getattr(obj, name) AttributeError: 'str' object has no attribute '__radd__'

  
  
Posted 2 years ago
Votes Newest

Answers 10


Thanks for your help

  
  
Posted 2 years ago

Great, well release v1.6.2 shortly 🙂

  
  
Posted 2 years ago

Hi SuccessfulKoala55
Yes, it seems version v1.6.2rc0 solved the problem.

  
  
Posted 2 years ago

ApprehensiveSeahorse83 I think we might have found it 🙂 - can you please try using version v1.6.2rc0 and verify it solves your issue?

  
  
Posted 2 years ago

ApprehensiveSeahorse83 I was not able to reproduce it (although I think SmugDolphin23 did reproduce on his env) - what's your specific setup? Just doing:
` from clearml import Dataset

dataset = Dataset.create(
dataset_name="some name",
dataset_project="some project",
) `Works and raided no error for me (using Python 3.8)

  
  
Posted 2 years ago

Thanks, (works when using sdk 1.4.1)

  
  
Posted 2 years ago

thank you! we will take a look and come back to you

  
  
Posted 2 years ago

where my configuration is to use gcp storage with gs://…..

  
  
Posted 2 years ago

I just use:
dataset = Dataset.create( dataset_name=dataset_name, dataset_project=dataset_project, # parent_datasets=[d1], )

  
  
Posted 2 years ago

Hi! Can you please provide us with code that would help us reproduce this issue? Is it just downloading from gcp?

  
  
Posted 2 years ago
875 Views
10 Answers
2 years ago
one year ago
Tags