quantum-debugger 0.4.2__tar.gz → 0.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- quantum_debugger-0.6.0/AUTHORS.md +56 -0
- quantum_debugger-0.6.0/PKG-INFO +429 -0
- quantum_debugger-0.6.0/README.md +355 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/__init__.py +36 -0
- quantum_debugger-0.6.0/quantum_debugger/backends/aws_backend.py +283 -0
- quantum_debugger-0.6.0/quantum_debugger/backends/base_backend.py +74 -0
- quantum_debugger-0.6.0/quantum_debugger/backends/gpu_backend.py +296 -0
- quantum_debugger-0.6.0/quantum_debugger/backends/ibm_backend.py +204 -0
- quantum_debugger-0.6.0/quantum_debugger/benchmarks/__init__.py +61 -0
- quantum_debugger-0.6.0/quantum_debugger/benchmarks/optimization_benchmarks.py +154 -0
- quantum_debugger-0.6.0/quantum_debugger/benchmarks/qml_benchmarks.py +235 -0
- quantum_debugger-0.6.0/quantum_debugger/benchmarks/report_generator.py +189 -0
- quantum_debugger-0.6.0/quantum_debugger/benchmarks/scalability_benchmarks.py +177 -0
- quantum_debugger-0.6.0/quantum_debugger/gpu/__init__.py +19 -0
- quantum_debugger-0.6.0/quantum_debugger/gpu/memory.py +183 -0
- quantum_debugger-0.6.0/quantum_debugger/gpu/mixed_precision.py +227 -0
- quantum_debugger-0.6.0/quantum_debugger/gpu/multi_gpu.py +278 -0
- quantum_debugger-0.6.0/quantum_debugger/integrations/__init__.py +55 -0
- quantum_debugger-0.6.0/quantum_debugger/integrations/cirq_bridge.py +182 -0
- quantum_debugger-0.6.0/quantum_debugger/integrations/pennylane_bridge.py +176 -0
- quantum_debugger-0.6.0/quantum_debugger/integrations/qiskit_bridge.py +175 -0
- quantum_debugger-0.6.0/quantum_debugger/optimization/__init__.py +36 -0
- quantum_debugger-0.6.0/quantum_debugger/optimization/circuit_compiler.py +148 -0
- quantum_debugger-0.6.0/quantum_debugger/optimization/gate_reduction.py +271 -0
- quantum_debugger-0.6.0/quantum_debugger/optimization/optimization_passes.py +188 -0
- quantum_debugger-0.6.0/quantum_debugger/optimization/transpiler.py +247 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/__init__.py +27 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/algorithms/__init__.py +18 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/algorithms/qgan.py +203 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/algorithms/qrl.py +293 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/algorithms/vqe.py +133 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/ansatz/__init__.py +46 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/ansatz/excitation_preserving.py +152 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/ansatz/real_amplitudes.py +120 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/ansatz/strongly_entangling.py +162 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/ansatz/two_local.py +162 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/automl/__init__.py +30 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/automl/ansatz_selector.py +131 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/automl/architecture_search.py +167 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/automl/auto_qnn.py +221 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/automl/hyperparameter_tuner.py +192 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/data/__init__.py +26 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/data/dataset.py +296 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/data/feature_maps.py +228 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/error_mitigation/__init__.py +15 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/error_mitigation/zne.py +250 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/hamiltonians/molecular.py +390 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/hybrid/__init__.py +49 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/hybrid/layers.py +314 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/hybrid/pytorch_integration.py +201 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/hybrid/tensorflow_integration.py +217 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/kernels/__init__.py +40 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/kernels/alignment.py +183 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/kernels/qsvm.py +227 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/kernels/quantum_kernel.py +240 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/mitigation/__init__.py +43 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/mitigation/cdr.py +288 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/mitigation/error_characterization.py +255 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/mitigation/noise_models.py +306 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/mitigation/pec.py +238 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/optimizers/__init__.py +24 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/optimizers/advanced.py +351 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/__init__.py +34 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/base.py +90 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/encoding.py +75 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/losses.py +114 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/network.py +324 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/qnn/variational.py +95 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/transfer/__init__.py +28 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/transfer/fine_tuning.py +240 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/transfer/model_zoo.py +210 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/transfer/pretrained.py +274 -0
- quantum_debugger-0.6.0/quantum_debugger/qml/transfer/serialization.py +187 -0
- quantum_debugger-0.6.0/quantum_debugger.egg-info/PKG-INFO +429 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger.egg-info/SOURCES.txt +83 -4
- quantum_debugger-0.6.0/quantum_debugger.egg-info/requires.txt +42 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/setup.py +26 -3
- quantum_debugger-0.6.0/tests/integration/test_qiskit_integration.py +218 -0
- quantum_debugger-0.6.0/tests/qml/test_advanced_algorithms.py +230 -0
- quantum_debugger-0.6.0/tests/qml/test_advanced_optimizers.py +278 -0
- quantum_debugger-0.6.0/tests/qml/test_ansatz_library.py +271 -0
- quantum_debugger-0.6.0/tests/qml/test_automl.py +113 -0
- quantum_debugger-0.6.0/tests/qml/test_dataset.py +353 -0
- quantum_debugger-0.6.0/tests/qml/test_hamiltonians.py +304 -0
- quantum_debugger-0.6.0/tests/qml/test_hybrid.py +378 -0
- quantum_debugger-0.6.0/tests/qml/test_kernels.py +257 -0
- quantum_debugger-0.6.0/tests/qml/test_mitigation.py +292 -0
- quantum_debugger-0.6.0/tests/qml/test_qnn.py +283 -0
- quantum_debugger-0.6.0/tests/qml/test_transfer.py +228 -0
- quantum_debugger-0.6.0/tests/qml/test_transfer_extended.py +311 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/qml/test_vqe.py +21 -20
- quantum_debugger-0.6.0/tests/qml/test_zne.py +151 -0
- quantum_debugger-0.6.0/tests/test_backends.py +136 -0
- quantum_debugger-0.6.0/tests/test_benchmarks.py +153 -0
- quantum_debugger-0.6.0/tests/test_integrations.py +178 -0
- quantum_debugger-0.6.0/tests/test_optimization.py +315 -0
- quantum_debugger-0.6.0/tests/unit/test_error_handling.py +261 -0
- quantum_debugger-0.6.0/tests/unit/test_performance.py +93 -0
- quantum_debugger-0.4.2/PKG-INFO +0 -488
- quantum_debugger-0.4.2/README.md +0 -436
- quantum_debugger-0.4.2/quantum_debugger/integrations/__init__.py +0 -8
- quantum_debugger-0.4.2/quantum_debugger/qml/__init__.py +0 -31
- quantum_debugger-0.4.2/quantum_debugger/qml/algorithms/__init__.py +0 -11
- quantum_debugger-0.4.2/quantum_debugger/qml/algorithms/vqe.py +0 -220
- quantum_debugger-0.4.2/quantum_debugger/qml/ansatz/__init__.py +0 -158
- quantum_debugger-0.4.2/quantum_debugger/qml/hamiltonians/molecular.py +0 -107
- quantum_debugger-0.4.2/quantum_debugger/qml/optimizers/__init__.py +0 -219
- quantum_debugger-0.4.2/quantum_debugger.egg-info/PKG-INFO +0 -488
- quantum_debugger-0.4.2/quantum_debugger.egg-info/requires.txt +0 -16
- quantum_debugger-0.4.2/tests/qml/test_properties.py +0 -248
- quantum_debugger-0.4.2/tests/qml/test_regression.py +0 -258
- quantum_debugger-0.4.2/tests/qml/test_training.py +0 -181
- quantum_debugger-0.4.2/tests/unit/test_v0.4.0_integration.py +0 -118
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/CHANGELOG.md +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/LICENSE +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/MANIFEST.in +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/bell_state_debug.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/benchmarks.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/grover_profiling.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/interactive_demo.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/qaoa_maxcut_example.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/qiskit_integration_demo.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/qml_basic_example.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/examples/vqe_h2_example.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/base.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/cupy_backend.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/numba_backend.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/numpy_backend.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/backends/sparse_backend.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/core/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/core/circuit.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/core/gates.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/core/quantum_state.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/debugger/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/debugger/breakpoints.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/debugger/debugger.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/debugger/inspector.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/integrations/cirq_adapter.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/integrations/qiskit_adapter.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/mitigation/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/mitigation/core/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/mitigation/core/extrapolator.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/mitigation/core/folder.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/mitigation/zne.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/composite_noise.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/hardware_profiles.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/noise_helpers.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/noise_models.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/noise/stochastic_sampler.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/parallel/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/parallel/executor.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/profiler/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/profiler/metrics.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/profiler/profiler.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/algorithms/qaoa.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/gates/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/gates/parameterized.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/hamiltonians/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/training/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/utils/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/qml/utils/gradients.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/visualization/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/visualization/bloch_sphere.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger/visualization/state_viz.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger.egg-info/dependency_links.txt +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/quantum_debugger.egg-info/top_level.txt +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/requirements.txt +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/setup.cfg +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/cirq/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/cirq/test_cirq_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/cirq/test_cirq_edge_cases.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/cirq/test_cirq_integration.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/conftest.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/integration/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/integration/test_integration.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/qml/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/qml/test_edge_cases.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/qml/test_qaoa.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/qml/test_qml_parameterized_gates.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/CONVERSION_TRACKER.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/__init__.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backend_comprehensive.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backend_integration.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backends.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backends_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backends_comprehensive.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_backends_fast.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_circuit_noise.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_circuit_noise_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_circuit_noise_unique.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_compatibility.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_comprehensive.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_distribution.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_docstrings.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_extreme.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_gpu_quick.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_hardware_profiles_extended.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_hardware_profiles_phase3.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_mitigation_comprehensive.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_mitigation_final.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_mitigation_observables.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_mitigation_zne.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_extreme.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_final.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_performance.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_quantum_info.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_noise_ultimate.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_parallel.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_production.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qiskit_complex.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qiskit_extreme.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qiskit_ultra.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qml_advanced.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qml_comprehensive.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qml_memory.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qml_threading.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_qml_tricky.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_quickstart.py +0 -0
- {quantum_debugger-0.4.2 → quantum_debugger-0.6.0}/tests/unit/test_validation.py +0 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Authors and Contributors
|
|
2
|
+
|
|
3
|
+
## Primary Author
|
|
4
|
+
|
|
5
|
+
**Raunak Kumar Gupta**
|
|
6
|
+
- GitHub: [@Raunakg2005](https://github.com/Raunakg2005)
|
|
7
|
+
- LinkedIn: [Raunak Kumar Gupta](https://www.linkedin.com/in/raunak-kumar-gupta-7b3503270/)
|
|
8
|
+
- Institution: K.J. Somaiya School of Engineering
|
|
9
|
+
|
|
10
|
+
## Academic Supervision
|
|
11
|
+
|
|
12
|
+
**Dr. Vaibhav Prakash Vasani**
|
|
13
|
+
- LinkedIn: [Dr. Vaibhav Vasani](https://www.linkedin.com/in/dr-vaibhav-vasani-phd-460a4162/)
|
|
14
|
+
- Role: Project Supervisor
|
|
15
|
+
- Institution: K.J. Somaiya School of Engineering
|
|
16
|
+
|
|
17
|
+
## Project Information
|
|
18
|
+
|
|
19
|
+
- **Project:** Quantum Machine Learning Library with AutoML
|
|
20
|
+
- **Version:** 0.6.0
|
|
21
|
+
- **Started:** 2025
|
|
22
|
+
- **Status:** Production Ready
|
|
23
|
+
|
|
24
|
+
## Contributing
|
|
25
|
+
|
|
26
|
+
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
27
|
+
|
|
28
|
+
### Contributors
|
|
29
|
+
|
|
30
|
+
This section will list all contributors who submit pull requests.
|
|
31
|
+
|
|
32
|
+
Thank you to everyone who has contributed to making quantum-debugger better!
|
|
33
|
+
|
|
34
|
+
## Citation
|
|
35
|
+
|
|
36
|
+
If you use quantum-debugger in your research, please cite:
|
|
37
|
+
|
|
38
|
+
```bibtex
|
|
39
|
+
@software{quantum_debugger_2026,
|
|
40
|
+
title = {Quantum Debugger: Production-Grade Quantum Machine Learning Library},
|
|
41
|
+
author = {Gupta, Raunak Kumar},
|
|
42
|
+
year = {2026},
|
|
43
|
+
url = {https://github.com/Raunakg2005/quantum-debugger},
|
|
44
|
+
note = {Supervised by Dr. Vaibhav Prakash Vasani, K.J. Somaiya School of Engineering}
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Contact
|
|
49
|
+
|
|
50
|
+
- **Issues:** [GitHub Issues](https://github.com/Raunakg2005/quantum-debugger/issues)
|
|
51
|
+
- **Discussions:** [GitHub Discussions](https://github.com/Raunakg2005/quantum-debugger/discussions)
|
|
52
|
+
- **LinkedIn:** [Raunak Kumar Gupta](https://www.linkedin.com/in/raunak-kumar-gupta-7b3503270/)
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT License - See [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: quantum-debugger
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Comprehensive quantum machine learning library with AutoML, GPU acceleration, advanced algorithms (QGANs, Quantum RL), transfer learning, and multi-framework support (Qiskit, PennyLane, Cirq, TensorFlow, PyTorch)
|
|
5
|
+
Home-page: https://github.com/Raunakg2005/quantum-debugger
|
|
6
|
+
Author: Raunak Kumar Gupta
|
|
7
|
+
Author-email: raunak.gupta@somaiya.edu
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/Raunakg2005/quantum-debugger/issues
|
|
9
|
+
Project-URL: Source, https://github.com/Raunakg2005/quantum-debugger
|
|
10
|
+
Project-URL: Documentation, https://github.com/Raunakg2005/quantum-debugger#readme
|
|
11
|
+
Keywords: quantum computing debugging profiling quantum-circuit visualization qml vqe qaoa machine-learning
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Software Development :: Debuggers
|
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Requires-Python: >=3.9
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
License-File: LICENSE
|
|
27
|
+
License-File: AUTHORS.md
|
|
28
|
+
Requires-Dist: numpy>=1.20.0
|
|
29
|
+
Requires-Dist: scipy>=1.7.0
|
|
30
|
+
Requires-Dist: matplotlib>=3.5.0
|
|
31
|
+
Provides-Extra: qiskit
|
|
32
|
+
Requires-Dist: qiskit>=1.0.0; extra == "qiskit"
|
|
33
|
+
Provides-Extra: pennylane
|
|
34
|
+
Requires-Dist: pennylane>=0.30.0; extra == "pennylane"
|
|
35
|
+
Provides-Extra: cirq
|
|
36
|
+
Requires-Dist: cirq>=1.0.0; extra == "cirq"
|
|
37
|
+
Provides-Extra: tensorflow
|
|
38
|
+
Requires-Dist: tensorflow>=2.10.0; extra == "tensorflow"
|
|
39
|
+
Provides-Extra: pytorch
|
|
40
|
+
Requires-Dist: torch>=1.13.0; extra == "pytorch"
|
|
41
|
+
Provides-Extra: ibm
|
|
42
|
+
Requires-Dist: qiskit-ibm-runtime>=0.15.0; extra == "ibm"
|
|
43
|
+
Provides-Extra: aws
|
|
44
|
+
Requires-Dist: amazon-braket-sdk>=1.50.0; extra == "aws"
|
|
45
|
+
Requires-Dist: boto3>=1.28.0; extra == "aws"
|
|
46
|
+
Provides-Extra: all
|
|
47
|
+
Requires-Dist: qiskit>=1.0.0; extra == "all"
|
|
48
|
+
Requires-Dist: pennylane>=0.30.0; extra == "all"
|
|
49
|
+
Requires-Dist: cirq>=1.0.0; extra == "all"
|
|
50
|
+
Requires-Dist: tensorflow>=2.10.0; extra == "all"
|
|
51
|
+
Requires-Dist: torch>=1.13.0; extra == "all"
|
|
52
|
+
Requires-Dist: scikit-learn>=1.0.0; extra == "all"
|
|
53
|
+
Requires-Dist: qiskit-ibm-runtime>=0.15.0; extra == "all"
|
|
54
|
+
Requires-Dist: amazon-braket-sdk>=1.50.0; extra == "all"
|
|
55
|
+
Provides-Extra: dev
|
|
56
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
57
|
+
Requires-Dist: pytest-cov>=3.0.0; extra == "dev"
|
|
58
|
+
Requires-Dist: black>=22.0.0; extra == "dev"
|
|
59
|
+
Requires-Dist: flake8>=4.0.0; extra == "dev"
|
|
60
|
+
Requires-Dist: mypy>=0.990; extra == "dev"
|
|
61
|
+
Dynamic: author
|
|
62
|
+
Dynamic: author-email
|
|
63
|
+
Dynamic: classifier
|
|
64
|
+
Dynamic: description
|
|
65
|
+
Dynamic: description-content-type
|
|
66
|
+
Dynamic: home-page
|
|
67
|
+
Dynamic: keywords
|
|
68
|
+
Dynamic: license-file
|
|
69
|
+
Dynamic: project-url
|
|
70
|
+
Dynamic: provides-extra
|
|
71
|
+
Dynamic: requires-dist
|
|
72
|
+
Dynamic: requires-python
|
|
73
|
+
Dynamic: summary
|
|
74
|
+
|
|
75
|
+
# Quantum Debugger
|
|
76
|
+
|
|
77
|
+
**The Most Comprehensive Quantum Machine Learning Library with AutoML**
|
|
78
|
+
|
|
79
|
+
[](https://pypi.org/project/quantum-debugger/)
|
|
80
|
+
[](https://github.com/Raunakg2005/quantum-debugger/blob/main/tests/FINAL_TEST_SUMMARY.md)
|
|
81
|
+
[](https://github.com/Raunakg2005/quantum-debugger/actions)
|
|
82
|
+
[](https://codecov.io/gh/Raunakg2005/quantum-debugger)
|
|
83
|
+
[](https://python.org)
|
|
84
|
+
[](LICENSE)
|
|
85
|
+
|
|
86
|
+
A powerful Python library for quantum circuit debugging, state inspection, performance analysis, and **production-grade quantum machine learning**. From basic circuits to enterprise QML with one-line AutoML.
|
|
87
|
+
|
|
88
|
+
## What's New in v0.6.0
|
|
89
|
+
|
|
90
|
+
**ONE-LINE QUANTUM MACHINE LEARNING**
|
|
91
|
+
|
|
92
|
+
```python
|
|
93
|
+
# NEW: AutoML - Quantum ML for everyone
|
|
94
|
+
from quantum_debugger.qml.automl import auto_qnn
|
|
95
|
+
|
|
96
|
+
model = auto_qnn(X_train, y_train)
|
|
97
|
+
predictions = model.predict(X_test)
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**No quantum expertise required.** AutoML automatically:
|
|
101
|
+
- Selects optimal number of qubits
|
|
102
|
+
- Chooses best ansatz architecture
|
|
103
|
+
- Tunes all hyperparameters
|
|
104
|
+
- Finds best model configuration
|
|
105
|
+
|
|
106
|
+
### v0.6.0 Complete Feature Set
|
|
107
|
+
|
|
108
|
+
**Advanced QML (Weeks 1-3)**
|
|
109
|
+
- **Hybrid Models** - TensorFlow and PyTorch quantum layers
|
|
110
|
+
- **Quantum Kernels** - QSVM with multiple kernel types
|
|
111
|
+
- **Transfer Learning** - PretrainedQNN, model zoo, fine-tuning
|
|
112
|
+
|
|
113
|
+
**Production Tools (Weeks 4-5)**
|
|
114
|
+
- **Error Mitigation** - PEC, CDR, realistic noise models
|
|
115
|
+
- **Circuit Optimization** - Gate reduction, compilation, transpilation
|
|
116
|
+
|
|
117
|
+
**Universal Compatibility (Week 6)**
|
|
118
|
+
- **Framework Integrations** - Qiskit, PennyLane, Cirq bridges
|
|
119
|
+
|
|
120
|
+
**Hardware and Performance (Weeks 7-8)**
|
|
121
|
+
- **Real Quantum Computers** - IBM Quantum (FREE), AWS Braket
|
|
122
|
+
- **Benchmarking** - QML vs Classical performance analysis
|
|
123
|
+
|
|
124
|
+
**AutoML (Week 9)**
|
|
125
|
+
- **auto_qnn()** - One-line interface for quantum ML
|
|
126
|
+
- **Automatic Ansatz Selection** - Finds best circuit architecture
|
|
127
|
+
- **Hyperparameter Tuning** - Grid and random search
|
|
128
|
+
- **Neural Architecture Search** - Optimizes qubit and layer counts
|
|
129
|
+
|
|
130
|
+
**Jupyter Notebooks (Week 10)**
|
|
131
|
+
- **5 Example Notebooks** - AutoML, Transfer Learning, Hardware, Optimization, Benchmarking
|
|
132
|
+
- **Google Colab Compatible** - Run in browser
|
|
133
|
+
|
|
134
|
+
**Advanced Algorithms (Week 11 - NEW)**
|
|
135
|
+
- **Quantum GANs** - Generative adversarial networks for quantum states
|
|
136
|
+
- **Quantum RL** - Q-learning with quantum circuits
|
|
137
|
+
- **SimpleEnvironment** - Test environment for RL
|
|
138
|
+
|
|
139
|
+
**CI/CD Automation (Week 12 - NEW)**
|
|
140
|
+
- **GitHub Actions** - Auto-testing on Python 3.9-3.12
|
|
141
|
+
- **Auto-Publishing** - Automatic PyPI releases
|
|
142
|
+
- **Code Quality** - Linting, formatting checks
|
|
143
|
+
|
|
144
|
+
**GPU Acceleration (Week 13 - NEW)**
|
|
145
|
+
- **Multi-GPU** - Distribute training across GPUs (1.8-3x speedup)
|
|
146
|
+
- **Mixed Precision** - FP16/FP32 for 2-3x faster training
|
|
147
|
+
- **Memory Optimization** - Gradient checkpointing (50% reduction)
|
|
148
|
+
- **GPU Benchmarking** - Performance profiling tools
|
|
149
|
+
|
|
150
|
+
See [complete documentation](https://github.com/Raunakg2005/quantum-debugger#documentation) for details.
|
|
151
|
+
|
|
152
|
+
## Features
|
|
153
|
+
|
|
154
|
+
### Core Debugging
|
|
155
|
+
- **Step-through Debugging** - Execute circuits gate-by-gate with breakpoints
|
|
156
|
+
- **State Inspection** - Analyze quantum states at any point
|
|
157
|
+
- **Circuit Profiling** - Depth analysis, gate statistics, optimization suggestions
|
|
158
|
+
- **Visualization** - State vectors, Bloch spheres, and more
|
|
159
|
+
- **Noise Simulation** - Realistic hardware noise models
|
|
160
|
+
- **Qiskit Integration** - Import/export circuits from Qiskit
|
|
161
|
+
|
|
162
|
+
### Quantum Machine Learning (v0.6.0)
|
|
163
|
+
- **AutoML** - One-line interface with automatic optimization
|
|
164
|
+
- **Advanced Algorithms** - Quantum GANs and Quantum Reinforcement Learning
|
|
165
|
+
- **Transfer Learning** - PretrainedQNN, model zoo, fine-tuning
|
|
166
|
+
- **GPU Acceleration** - Multi-GPU, mixed precision (2-3x speedup)
|
|
167
|
+
- **Error Mitigation** - PEC, CDR, realistic noise models
|
|
168
|
+
- **Circuit Optimization** - Gate reduction, compilation, transpilation
|
|
169
|
+
- **Framework Bridges** - Qiskit, PennyLane, Cirq compatibility
|
|
170
|
+
- **Hardware Backends** - IBM Quantum (FREE), AWS Braket
|
|
171
|
+
- **Benchmarking** - QML vs Classical performance analysis
|
|
172
|
+
- **Hybrid Models** - TensorFlow and PyTorch quantum layers
|
|
173
|
+
- **Quantum Kernels** - QSVM with multiple kernel types
|
|
174
|
+
- **VQE and QAOA** - Molecular chemistry and optimization
|
|
175
|
+
- **Advanced Optimizers** - 7 optimizers including QNG
|
|
176
|
+
- **Ansatz Library** - 8 pre-built quantum circuit templates
|
|
177
|
+
- **Example Notebooks** - 5 comprehensive Jupyter tutorials
|
|
178
|
+
|
|
179
|
+
## Quick Start
|
|
180
|
+
|
|
181
|
+
### Installation
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
pip install quantum-debugger
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
### Basic Circuit Debugging
|
|
188
|
+
|
|
189
|
+
```python
|
|
190
|
+
from quantum_debugger import QuantumCircuit, QuantumDebugger
|
|
191
|
+
|
|
192
|
+
# Create a Bell state
|
|
193
|
+
qc = QuantumCircuit(2)
|
|
194
|
+
qc.h(0)
|
|
195
|
+
qc.cnot(0, 1)
|
|
196
|
+
|
|
197
|
+
# Debug step-by-step
|
|
198
|
+
debugger = QuantumDebugger(qc)
|
|
199
|
+
debugger.step() # Execute first gate
|
|
200
|
+
print(debugger.get_current_state())
|
|
201
|
+
debugger.step() # Execute second gate
|
|
202
|
+
print(debugger.get_current_state())
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Quantum Machine Learning with AutoML
|
|
206
|
+
|
|
207
|
+
```python
|
|
208
|
+
from quantum_debugger.qml.automl import auto_qnn
|
|
209
|
+
import numpy as np
|
|
210
|
+
|
|
211
|
+
# Load your data
|
|
212
|
+
X_train = np.random.randn(100, 4)
|
|
213
|
+
y_train = np.random.randint(0, 2, 100)
|
|
214
|
+
|
|
215
|
+
# One line to train quantum model
|
|
216
|
+
model = auto_qnn(X_train, y_train)
|
|
217
|
+
|
|
218
|
+
# Make predictions
|
|
219
|
+
X_test = np.random.randn(20, 4)
|
|
220
|
+
predictions = model.predict(X_test)
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
### Manual QNN Configuration
|
|
224
|
+
|
|
225
|
+
For more control over your quantum neural network:
|
|
226
|
+
|
|
227
|
+
```python
|
|
228
|
+
from quantum_debugger.qml.qnn import QuantumNeuralNetwork
|
|
229
|
+
|
|
230
|
+
# Create network
|
|
231
|
+
qnn = QuantumNeuralNetwork(n_qubits=4)
|
|
232
|
+
qnn.compile(optimizer='adam', loss='mse')
|
|
233
|
+
|
|
234
|
+
# Train
|
|
235
|
+
history = qnn.fit(X_train, y_train, epochs=50, batch_size=16)
|
|
236
|
+
|
|
237
|
+
# Predict
|
|
238
|
+
predictions = qnn.predict(X_test)
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
## Advanced Features
|
|
242
|
+
|
|
243
|
+
### Transfer Learning
|
|
244
|
+
|
|
245
|
+
```python
|
|
246
|
+
from quantum_debugger.qml.transfer import PretrainedQNN
|
|
247
|
+
|
|
248
|
+
# Load pretrained model
|
|
249
|
+
pretrained = PretrainedQNN.from_zoo('iris_classifier')
|
|
250
|
+
|
|
251
|
+
# Fine-tune on your data
|
|
252
|
+
pretrained.fine_tune(X_new, y_new, epochs=10, freeze_layers=2)
|
|
253
|
+
|
|
254
|
+
# Save your model
|
|
255
|
+
pretrained.save('models/my_qnn.pkl')
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### Error Mitigation
|
|
259
|
+
|
|
260
|
+
```python
|
|
261
|
+
from quantum_debugger.qml.mitigation import PEC, CDR
|
|
262
|
+
|
|
263
|
+
# Probabilistic Error Cancellation
|
|
264
|
+
pec = PEC(gate_error_rates={'rx': 0.01, 'cnot': 0.02})
|
|
265
|
+
mitigated_result, uncertainty = pec.apply_pec(circuit)
|
|
266
|
+
|
|
267
|
+
# Clifford Data Regression
|
|
268
|
+
cdr = CDR(n_clifford_circuits=50)
|
|
269
|
+
training_data = cdr.generate_training_data(n_qubits=4, depth=3)
|
|
270
|
+
cdr.train(training_data, noisy_executor)
|
|
271
|
+
mitigated = cdr.apply_cdr(noisy_measurement)
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
### Circuit Optimization
|
|
275
|
+
|
|
276
|
+
```python
|
|
277
|
+
from quantum_debugger.optimization import optimize_circuit, compile_circuit
|
|
278
|
+
|
|
279
|
+
# Simple optimization
|
|
280
|
+
gates = [('h', 0), ('h', 0), ('x', 1)] # H cancels itself
|
|
281
|
+
optimized = optimize_circuit(gates) # Returns: [('x', 1)]
|
|
282
|
+
|
|
283
|
+
# Multi-level compilation
|
|
284
|
+
compiled = compile_circuit(gates, optimization_level=3)
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
### Hardware Deployment
|
|
288
|
+
|
|
289
|
+
```python
|
|
290
|
+
from quantum_debugger.backends import IBMQuantumBackend
|
|
291
|
+
|
|
292
|
+
# Connect to IBM Quantum (FREE tier)
|
|
293
|
+
backend = IBMQuantumBackend()
|
|
294
|
+
backend.connect({'token': 'YOUR_FREE_IBM_TOKEN'})
|
|
295
|
+
|
|
296
|
+
# Execute on real quantum computer
|
|
297
|
+
gates = [('h', 0), ('cnot', (0, 1))]
|
|
298
|
+
counts = backend.execute(gates, n_shots=1024)
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
Get your free IBM Quantum token at: https://quantum.ibm.com
|
|
302
|
+
|
|
303
|
+
### Framework Integration
|
|
304
|
+
|
|
305
|
+
```python
|
|
306
|
+
from quantum_debugger.integrations import to_qiskit, from_qiskit, to_pennylane, to_cirq
|
|
307
|
+
|
|
308
|
+
# Convert to Qiskit
|
|
309
|
+
qiskit_circuit = to_qiskit(gates)
|
|
310
|
+
|
|
311
|
+
# Convert to PennyLane
|
|
312
|
+
pennylane_qnode = to_pennylane(gates)
|
|
313
|
+
|
|
314
|
+
# Convert to Cirq
|
|
315
|
+
cirq_circuit = to_cirq(gates)
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
## Installation Options
|
|
319
|
+
|
|
320
|
+
### Basic Installation
|
|
321
|
+
|
|
322
|
+
```bash
|
|
323
|
+
pip install quantum-debugger
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
### With Optional Dependencies
|
|
327
|
+
|
|
328
|
+
```bash
|
|
329
|
+
# All frameworks
|
|
330
|
+
pip install quantum-debugger[all]
|
|
331
|
+
|
|
332
|
+
# Individual frameworks
|
|
333
|
+
pip install quantum-debugger[qiskit]
|
|
334
|
+
pip install quantum-debugger[pennylane]
|
|
335
|
+
pip install quantum-debugger[cirq]
|
|
336
|
+
pip install quantum-debugger[tensorflow]
|
|
337
|
+
pip install quantum-debugger[pytorch]
|
|
338
|
+
|
|
339
|
+
# Hardware backends
|
|
340
|
+
pip install quantum-debugger[ibm] # FREE
|
|
341
|
+
pip install quantum-debugger[aws] # Paid service
|
|
342
|
+
|
|
343
|
+
# Development tools
|
|
344
|
+
pip install quantum-debugger[dev]
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
## Documentation
|
|
348
|
+
|
|
349
|
+
**v0.6.0 Guides:**
|
|
350
|
+
- [V0.6.0 Features](V06_FEATURES.md) - Complete feature reference
|
|
351
|
+
- [Transfer Learning Guide](docs/transfer_learning_guide.md)
|
|
352
|
+
- [Error Mitigation Guide](docs/error_mitigation_guide.md)
|
|
353
|
+
- [Circuit Optimization Guide](docs/circuit_optimization_guide.md)
|
|
354
|
+
- [Hardware Backends Guide](docs/hardware_backends_guide.md)
|
|
355
|
+
|
|
356
|
+
**v0.5.0 Guides (still valid):**
|
|
357
|
+
- [QNN Guide](docs/qnn_guide.md)
|
|
358
|
+
- [Hybrid Models Guide](docs/hybrid_models_guide.md)
|
|
359
|
+
- [VQE Guide](docs/vqe_guide.md)
|
|
360
|
+
- [QAOA Guide](docs/qaoa_guide.md)
|
|
361
|
+
|
|
362
|
+
## Testing
|
|
363
|
+
|
|
364
|
+
```bash
|
|
365
|
+
# Run all tests
|
|
366
|
+
pytest tests/ -v
|
|
367
|
+
|
|
368
|
+
# Run specific test suites
|
|
369
|
+
pytest tests/qml/ -v
|
|
370
|
+
pytest tests/test_optimization.py -v
|
|
371
|
+
pytest tests/test_integrations.py -v
|
|
372
|
+
|
|
373
|
+
# With coverage
|
|
374
|
+
pytest tests/ --cov=quantum_debugger --cov-report=html
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
See [FINAL_TEST_SUMMARY.md](tests/FINAL_TEST_SUMMARY.md) for detailed test information.
|
|
378
|
+
|
|
379
|
+
**Test Statistics:**
|
|
380
|
+
- Total Tests: 384
|
|
381
|
+
- Status: 100% passing
|
|
382
|
+
- Skipped: 3 (AWS Braket - optional dependency)
|
|
383
|
+
|
|
384
|
+
## Contributing
|
|
385
|
+
|
|
386
|
+
Contributions are welcome. Please ensure:
|
|
387
|
+
1. All tests pass
|
|
388
|
+
2. Code follows PEP 8 style guidelines
|
|
389
|
+
3. Documentation is updated
|
|
390
|
+
4. New features include tests
|
|
391
|
+
|
|
392
|
+
## License
|
|
393
|
+
|
|
394
|
+
MIT License - see [LICENSE](LICENSE) file.
|
|
395
|
+
|
|
396
|
+
## Citation
|
|
397
|
+
|
|
398
|
+
If you use quantum-debugger in your research, please cite:
|
|
399
|
+
|
|
400
|
+
```bibtex
|
|
401
|
+
@software{quantum_debugger_2026,
|
|
402
|
+
title = {Quantum Debugger: Production-Grade Quantum Machine Learning Library},
|
|
403
|
+
author = {Gupta, Raunak Kumar},
|
|
404
|
+
year = {2026},
|
|
405
|
+
url = {https://github.com/Raunakg2005/quantum-debugger}
|
|
406
|
+
}
|
|
407
|
+
```
|
|
408
|
+
|
|
409
|
+
## Acknowledgments
|
|
410
|
+
|
|
411
|
+
**Author:** Raunak Kumar Gupta
|
|
412
|
+
**GitHub:** [@Raunakg2005](https://github.com/Raunakg2005)
|
|
413
|
+
**LinkedIn:** [Raunak Kumar Gupta](https://www.linkedin.com/in/raunak-kumar-gupta-7b3503270/)
|
|
414
|
+
**Supervised by:** Dr. Vaibhav Prakash Vasani
|
|
415
|
+
**Supervisor LinkedIn:** [Dr. Vaibhav Vasani](https://www.linkedin.com/in/dr-vaibhav-vasani-phd-460a4162/)
|
|
416
|
+
**Institution:** K.J. Somaiya School of Engineering
|
|
417
|
+
|
|
418
|
+
## Links
|
|
419
|
+
|
|
420
|
+
**PyPI:** https://pypi.org/project/quantum-debugger/
|
|
421
|
+
**GitHub:** https://github.com/Raunakg2005/quantum-debugger
|
|
422
|
+
**Issues:** https://github.com/Raunakg2005/quantum-debugger/issues
|
|
423
|
+
**Documentation:** https://github.com/Raunakg2005/quantum-debugger#readme
|
|
424
|
+
|
|
425
|
+
---
|
|
426
|
+
|
|
427
|
+
**Version:** 0.6.0
|
|
428
|
+
**Status:** Production Ready
|
|
429
|
+
**Last Updated:** January 14, 2026
|