Hi @kolja, thanks a lot for reporting this! I have checked this but it seems I am not getting the same behaviour as you do, by running a code like this:
import wandb
entity = entity_name
project = project_name
run = wandb.init(entity=entity, project=project)
for i in range(5):
run.log({'hierarchy_1/metric_1':i, 'hierarchy_1/metric_2':1/(i+1)})
id = run.id
run.finish()
api = wandb.Api()
run = api.run(f'{entity}/{project}/{id}')
history = run.history(keys=["hierarchy_1/metric_1", "hierarchy_1/metric_2"], samples=5)
print(history)
Could you please try this code and see if it works? Also, could you send me the link of the run and so I can have a look at it and see what type of data are you using because maybe this is affecting? Thanks
We wanted to follow up with you regarding your support request as we have not heard back from you. Please let us know if we can be of further assistance or if your issue has been resolved.