
Reputation
Badges 1
12 × Eureka!And here is how the error appears. Trying to get the metric that was not logged.
Here for instance we had only two cases of TypeError: 'NoneType' object is not subscriptable, one is on line 9846. But as you see in the pic the workers are going down.
@<1523701070390366208:profile|CostlyOstrich36> Here is HyperparameterOptimizer class
hpo = HyperParameterOptimizer(
# Base experiment to optimize
base_task_id=base_task_id,
# Hyperparameters to tune
hyper_parameters=param_ranges,
# Objective metric
objective_metric_title=[
metric_title for metric_title in opt_conf.hpo_params.objective_metric_title
],
objective_metric_series=[
metric for metric in ...
Hi @<1523701070390366208:profile|CostlyOstrich36> , yes and that was actually easy to pass to the clearml hpo class. Thanks!
Hi @<1523701070390366208:profile|CostlyOstrich36> thanks! Yes, i did that like attached. I tried host: s3.us-west-004.backblazeb2.com , backblazeb2.com , with port :9000, :433.
and the log error is:
2025-01-15 13:01:58,264 - clearml.storage - ERROR - Failed uploading: Could not connect to the endpoint URL: " None "
it is t...
Hi @<1523701070390366208:profile|CostlyOstrich36> I tried, but got
2025-01-15 16:35:13,846 - clearml.storage - ERROR - Failed uploading: An error occurred (InvalidAccessKeyId) when calling the PutObject operation: The AWS Access Key Id you provided does not exist in our records.
and I saw that endpoint_url is None. Indeed cfg.host is returning None.
I tried to hardcode the endpoint_url and got
2025-01-15 16:37:01,713 - clearml.storage - ERROR - Failed uploading: An error occurred (405) whe...
S3BucketConfig(bucket='mkrs-data', subdir='', host='',...)
in all cases i get that host=''.
Hi @<1689446563463565312:profile|SmallTurkey79> could you please share how you did that? Here is how I tried, with 443 and no region, but still not working. The endpoint variable in clearml/storage/helper.py always returns None.
Thanks!
Great, @<1689446563463565312:profile|SmallTurkey79> I will check that and let you know! Appreciate that!
Thanks @<1689446563463565312:profile|SmallTurkey79> ! That actually solved my issue indeed!! Thanks!
Yes, i can get access with the boto3 client
hmm I see. Thanks @<1523701070390366208:profile|CostlyOstrich36>