Specifically, I'd like to see the ibmq_london calibration file for April 15, 2020.
Asked
Active
Viewed 767 times
5
Martin Vesely
- 13,841
- 4
- 28
- 65
Jed Brody
- 95
- 4
1 Answers
7
Historical calibration data are available for each device via the backend.properties() method. It accepts a datetime field.
from datetime import datetime
t = datetime(day=15, month=4, year=2020, hour=10)
london_backend.properties(datetime=t)
Ali Javadi
- 1,622
- 1
- 8
- 11