Analysis
AnalysisResult
Container for storing and managing results from a quantum measurement analysis.
Attributes:
Name | Type | Description |
---|---|---|
updated_params |
dict[str, dict]
|
Dictionary containing the updated parameters for each qubit. |
figures |
dict[str, Figure]
|
Dictionary of matplotlib figures. |
fits |
dict[str, FitResult]
|
Dictionary of fit results. |
extra_data |
dict[str, ndarray]
|
Dictionary of auxiliary computed arrays (e.g., processed IQ data, FFT results). |
Methods:
Name | Description |
---|---|
add_exp_info_to_figures |
Annotates each figure with experiment ID and cooldown name from directory path. |
save_figures |
Saves all figures as PNG and interactive HTML using mpld3. |
aggregate_fit_summaries |
Aggregates human-readable summaries from all fit results. |
save_fits |
Saves aggregated fit summaries to a markdown file. |
save_extra_data |
Saves extra data arrays into an HDF5 file. |
save_all |
Runs all save methods and annotates figures with experimental metadata. |
Source code in sqil_core/experiment/_analysis.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
aggregate_fit_summaries()
Aggreate all the fit summaries and include model name.
Source code in sqil_core/experiment/_analysis.py
save_figures(dir_path)
Saves figures both as png and interactive html.