You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to read the entire output of the first example, you actually need to scroll to the right:
This is not vey obvious or readable, especially on Mac where the cursor is not visible.
Instead of printing noise_model.data[0].error, perhaps the code can be change to print each item separately, i.e.
datum=noise_model.data[0]
...
print(
f"And each of these `LayerError` objects possess"f" data on the generators for the error channel: \n{datum.generators}\n"
)
print(
f"and the error rates: \n{datum.rates}\n"
)
The text was updated successfully, but these errors were encountered:
URL to the relevant documentation
https://docs.quantum.ibm.com/guides/noise-learning#overview
Select all that apply
Describe the fix.
In order to read the entire output of the first example, you actually need to scroll to the right:
This is not vey obvious or readable, especially on Mac where the cursor is not visible.
Instead of printing
noise_model.data[0].error
, perhaps the code can be change to print each item separately, i.e.The text was updated successfully, but these errors were encountered: