What problem does it solve? Computing the Quantum Fisher Information (QFI) matrix for parameterized quantum states requires correctly deriving it from the Quantum Geometric Tensor (QGT), handling derivative types, phase-fix terms, and estimator precision — a process that is error-prone when done manually. ## Core Features & Use Cases - QFI via QGT backend: Wraps a BaseQGT backend (typically LinCombQGT) and extracts the real part of the QGT scaled by 4, using Qiskit's qiskit_algorithms.gradients module. - Reference and manual implementations: Includes a runnable Qiskit example plus a finite-difference manual implementation with symmetry and positive semi-definiteness checks. - Use Case: A researcher implementing quantum natural gradient descent needs the QFI matrix of a 2-qubit RY+CX ansatz at specific parameter values to precondition gradient updates in a variational optimization loop. ## Quick Start Ask the assistant to compute the QFI matrix for a two-qubit parameterized circuit with RY gates and a CX entangler at parameter values 0.5 and 1.0 using Qiskit's QFI class.