|
25 | 25 | :nosignatures: |
26 | 26 |
|
27 | 27 | BaseEstimatorGradient |
28 | | - BaseQGT |
29 | 28 | BaseSamplerGradient |
30 | 29 | EstimatorGradientResult |
31 | 30 | SamplerGradientResult |
32 | | - QGTResult |
33 | 31 |
|
34 | 32 | Linear Combination of Unitaries |
35 | 33 | ------------------------------- |
|
40 | 38 |
|
41 | 39 | LinCombEstimatorGradient |
42 | 40 | LinCombSamplerGradient |
43 | | - LinCombQGT |
44 | 41 |
|
45 | 42 | Parameter Shift Rules |
46 | 43 | --------------------- |
|
52 | 49 | ParamShiftEstimatorGradient |
53 | 50 | ParamShiftSamplerGradient |
54 | 51 |
|
55 | | -Quantum Fisher Information |
56 | | --------------------------- |
57 | | -
|
58 | | -.. autosummary:: |
59 | | - :toctree: ../stubs/ |
60 | | - :nosignatures: |
61 | | -
|
62 | | - QFIResult |
63 | | - QFI |
64 | | -
|
65 | 52 | Simultaneous Perturbation Stochastic Approximation |
66 | 53 | -------------------------------------------------- |
67 | 54 |
|
|
74 | 61 | """ |
75 | 62 |
|
76 | 63 | from .base.base_estimator_gradient import BaseEstimatorGradient |
77 | | -from .base.base_qgt import BaseQGT |
78 | 64 | from .base.base_sampler_gradient import BaseSamplerGradient |
79 | 65 | from .base.estimator_gradient_result import EstimatorGradientResult |
80 | 66 | from .lin_comb.lin_comb_estimator_gradient import DerivativeType, LinCombEstimatorGradient |
81 | | -from .lin_comb.lin_comb_qgt import LinCombQGT |
82 | 67 | from .lin_comb.lin_comb_sampler_gradient import LinCombSamplerGradient |
83 | 68 | from .param_shift.param_shift_estimator_gradient import ParamShiftEstimatorGradient |
84 | 69 | from .param_shift.param_shift_sampler_gradient import ParamShiftSamplerGradient |
85 | | -from .qfi import QFI |
86 | | -from .qfi_result import QFIResult |
87 | | -from .base.qgt_result import QGTResult |
88 | 70 | from .base.sampler_gradient_result import SamplerGradientResult |
89 | 71 | from .spsa.spsa_estimator_gradient import SPSAEstimatorGradient |
90 | 72 | from .spsa.spsa_sampler_gradient import SPSASamplerGradient |
91 | 73 |
|
92 | 74 | __all__ = [ |
93 | 75 | "BaseEstimatorGradient", |
94 | | - "BaseQGT", |
95 | 76 | "BaseSamplerGradient", |
96 | 77 | "DerivativeType", |
97 | 78 | "EstimatorGradientResult", |
98 | 79 | "LinCombEstimatorGradient", |
99 | | - "LinCombQGT", |
100 | 80 | "LinCombSamplerGradient", |
101 | 81 | "ParamShiftEstimatorGradient", |
102 | 82 | "ParamShiftSamplerGradient", |
103 | | - "QFI", |
104 | | - "QFIResult", |
105 | | - "QGTResult", |
106 | 83 | "SamplerGradientResult", |
107 | 84 | "SPSAEstimatorGradient", |
108 | 85 | "SPSASamplerGradient", |
|
0 commit comments