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, Another Bug To Report With The Aws_Auto_Scaler Using 1.1.2:

Hi, another bug to report with the aws_auto_scaler using 1.1.2:
Traceback (most recent call last): File "aws_autoscaler.py", line 297, in <module> main() File "aws_autoscaler.py", line 95, in main autoscaler = AwsAutoScaler(hyper_params, configurations) File "/root/.clearml/venvs-builds/3.6/lib/python3.6/site-packages/clearml/automation/aws_auto_scaler.py", line 30, in __init__ super(AwsAutoScaler, self).__init__(settings, configuration) File "/root/.clearml/venvs-builds/3.6/lib/python3.6/site-packages/clearml/automation/auto_scaler.py", line 47, in __init__ configuration = self.Configuration(**configuration) TypeError: __init__() got an unexpected keyword argument 'extra_clearml_conf'

  
  
Posted 2 years ago
Votes Newest

Answers 10


JitteryCoyote63 Welcome to the wonderful world of coding where some stuff doesn't work and you don't know why and some stuff works and you don't know why 😂

  
  
Posted 2 years ago

for now it just works

  
  
Posted 2 years ago

I must say I am confused

  
  
Posted 2 years ago

it still works

  
  
Posted 2 years ago

And if you switch back to 1.1.2 in the setup that 1.1.1 worked, does it still fail?

  
  
Posted 2 years ago

clearml 1.1.1 works

  
  
Posted 2 years ago

Nevermind, i was able to make it work, but no idea how

  
  
Posted 2 years ago

with 1.1.1 I get
User aborted: stopping task (3)

  
  
Posted 2 years ago

JitteryCoyote63 Does it happen to you also with 1.1.1?

  
  
Posted 2 years ago

Configuration:
{ "resource_configurations": { "v100": { "instance_type": "g4dn.2xlarge", "availability_zone": "us-east-1a", "ami_id": "ami-05e329519be512f1b", "ebs_device_name": "/dev/sda1", "ebs_volume_size": 100, "ebs_volume_type": "gp3", "key_name": "key.name", "security_group_ids": [ "sg-asd" ], "is_spot": false, "extra_configurations": { "SubnetId": "subnet-asd", "IamInstanceProfile": { "Name": "clearml-agent-ec2-role" }, "TagSpecifications": [ { "ResourceType": "instance", "Tags": [ { "Key": "Name", "Value": "clearml-agent" } ] } ] } } }, "queues": { "aws_v100": [ [ "v100", 10 ] ] }, "extra_clearml_conf": "sdk.aws.s3.region = eu-central-1\nagent.package_manager.pip_version = \"==20.2.3\"", "extra_vm_bash_script": "# Required by openCV\nsudo apt-get install -y libsm6 libxext6 libxrender-dev\npython3 -m pip install setuptools pip==20.2.3\n" }

  
  
Posted 2 years ago