qiskit.chemistry.algorithms.VQEUCCSDFactory¶
-
class
VQEUCCSDFactory
(quantum_instance, optimizer=None, initial_point=None, gradient=None, expectation=None, include_custom=False, method_singles='both', method_doubles='ucc', excitation_type='sd', same_spin_doubles=True)[código fonte]¶ A factory to construct a VQE minimum eigensolver with UCCSD ansatz wavefunction.
- Parâmetros
quantum_instance (
QuantumInstance
) – The quantum instance used in the minimum eigensolver.optimizer (
Optional
[Optimizer
]) – A classical optimizer.initial_point (
Optional
[ndarray
]) – An optional initial point (i.e. initial parameter values) for the optimizer. IfNone
then VQE will look to the variational form for a preferred point and if not will simply compute a random one.gradient (
Union
[GradientBase
,Callable
,None
]) – An optional gradient function or operator for optimizer.expectation (
Optional
[ExpectationBase
]) – The Expectation converter for taking the average value of the Observable over the var_form state function. WhenNone
(the default) anExpectationFactory
is used to select an appropriate expectation based on the operator and backend. When using Aer qasm_simulator backend, with paulis, it is however much faster to leverage custom Aer function for the computation but, although VQE performs much faster with it, the outcome is ideal, with no shot noise, like using a state vector simulator. If you are just looking for the quickest performance when choosing Aer qasm_simulator and the lack of shot noise is not an issue then set include_custom parameter here toTrue
(defaults toFalse
).include_custom (
bool
) – When expectation parameter here is None setting this toTrue
will allow the factory to include the custom Aer pauli expectation.method_singles (
str
) – specify the single excitation considered. ‘alpha’, ‘beta’, ‘both’ only alpha or beta spin-orbital single excitations or both (all of them).method_doubles (
str
) – specify the single excitation considered. ‘ucc’ (conventional ucc), succ (singlet ucc), succ_full (singlet ucc full), pucc (pair ucc).excitation_type (
str
) – specify the excitation type ‘sd’, ‘s’, ‘d’ respectively for single and double, only single, only double excitations.same_spin_doubles (
bool
) – enable double excitations of the same spin.
-
__init__
(quantum_instance, optimizer=None, initial_point=None, gradient=None, expectation=None, include_custom=False, method_singles='both', method_doubles='ucc', excitation_type='sd', same_spin_doubles=True)[código fonte]¶ - Parâmetros
quantum_instance (
QuantumInstance
) – The quantum instance used in the minimum eigensolver.optimizer (
Optional
[Optimizer
]) – A classical optimizer.initial_point (
Optional
[ndarray
]) – An optional initial point (i.e. initial parameter values) for the optimizer. IfNone
then VQE will look to the variational form for a preferred point and if not will simply compute a random one.gradient (
Union
[GradientBase
,Callable
,None
]) – An optional gradient function or operator for optimizer.expectation (
Optional
[ExpectationBase
]) – The Expectation converter for taking the average value of the Observable over the var_form state function. WhenNone
(the default) anExpectationFactory
is used to select an appropriate expectation based on the operator and backend. When using Aer qasm_simulator backend, with paulis, it is however much faster to leverage custom Aer function for the computation but, although VQE performs much faster with it, the outcome is ideal, with no shot noise, like using a state vector simulator. If you are just looking for the quickest performance when choosing Aer qasm_simulator and the lack of shot noise is not an issue then set include_custom parameter here toTrue
(defaults toFalse
).include_custom (
bool
) – When expectation parameter here is None setting this toTrue
will allow the factory to include the custom Aer pauli expectation.method_singles (
str
) – specify the single excitation considered. ‘alpha’, ‘beta’, ‘both’ only alpha or beta spin-orbital single excitations or both (all of them).method_doubles (
str
) – specify the single excitation considered. ‘ucc’ (conventional ucc), succ (singlet ucc), succ_full (singlet ucc full), pucc (pair ucc).excitation_type (
str
) – specify the excitation type ‘sd’, ‘s’, ‘d’ respectively for single and double, only single, only double excitations.same_spin_doubles (
bool
) – enable double excitations of the same spin.
Methods
__init__
(quantum_instance[, optimizer, …])- type quantum_instance
QuantumInstance
get_solver
(transformation)Returns a VQE with a UCCSD wavefunction ansatz, based on
transformation
.Returns whether the eigensolver generated by this factory supports auxiliary operators.
Attributes
Getter of the
excitation_type
setting for theexcitation_type
setting.Getter of the expectation.
Getter of the gradient function
Getter of the
include_custom
setting for theexpectation
setting.Getter of the initial point.
Getter of the
method_doubles
setting for themethod_doubles
setting.Getter of the
method_singles
setting for themethod_singles
setting.Getter of the optimizer.
Getter of the quantum instance.
Getter of the
same_spin_doubles
setting for thesame_spin_doubles
setting.-
property
excitation_type
¶ Getter of the
excitation_type
setting for theexcitation_type
setting.- Tipo de retorno
str
-
property
expectation
¶ Getter of the expectation.
- Tipo de retorno
ExpectationBase
-
get_solver
(transformation)[código fonte]¶ Returns a VQE with a UCCSD wavefunction ansatz, based on
transformation
. This works only with aFermionicTransformation
.- Parâmetros
transformation (
Transformation
) – a fermionic qubit operator transformation.- Tipo de retorno
MinimumEigensolver
- Retorna
A VQE suitable to compute the ground state of the molecule transformed by
transformation
.- Levanta
AquaError – in case a Transformation of wrong type is given.
-
property
gradient
¶ Getter of the gradient function
- Tipo de retorno
Union
[GradientBase
,Callable
,None
]
-
property
include_custom
¶ Getter of the
include_custom
setting for theexpectation
setting.- Tipo de retorno
bool
-
property
initial_point
¶ Getter of the initial point.
- Tipo de retorno
ndarray
-
property
method_doubles
¶ Getter of the
method_doubles
setting for themethod_doubles
setting.- Tipo de retorno
str
-
property
method_singles
¶ Getter of the
method_singles
setting for themethod_singles
setting.- Tipo de retorno
str
-
property
optimizer
¶ Getter of the optimizer.
- Tipo de retorno
Optimizer
-
property
quantum_instance
¶ Getter of the quantum instance.
- Tipo de retorno
QuantumInstance
-
property
same_spin_doubles
¶ Getter of the
same_spin_doubles
setting for thesame_spin_doubles
setting.- Tipo de retorno
bool
-
supports_aux_operators
()[código fonte]¶ Returns whether the eigensolver generated by this factory supports auxiliary operators.