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 one year ago
Votes Newest

Answers 10


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

  
  
Posted one year ago

Great, well release v1.6.2 shortly 🙂

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago

Thanks for your help

  
  
Posted one year 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 one year 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 one year ago

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

  
  
Posted one year ago

Thanks, (works when using sdk 1.4.1)

  
  
Posted one year ago
708 Views
10 Answers
one year ago
one year ago
Tags