I have made a copy of my data from my AWS account, following one of the answers from stack. I work with amazon braket, so my question is around this specific program.
Usually, I load my data using something like
tasks_load = ['arn:aws:braket:us-west-1:xxxx:quantum-task/yyyy']
for ide in tasks_load:
task_load = AwsQuantumTask(arn=ide)
where AwsQuantumTask
was previously loaded in the jupyter notebook. Now I have my local copy of the job as /local-path/bucket/amazon-braket-us-west-1-xxxx/tasks/yyyy
; my question is how I can load locally the data. (Note that yyyy
is itself a directory that contains the file results.json
, where the data is actually stored.)