.editorconfig
.pre-commit-config.yaml
AUTHORS.md
CHANGELOG.md
CITATION.cff
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
mkdocs.yml
noxfile.py
pyproject.toml
setup.py
docs/index.md
docs/installation.md
docs/quickstart.md
docs/encodings/amplitude/amplitude_encoding.md
docs/encodings/angle/angle_encoding.md
docs/encodings/basis/basis_encoding.md
docs/encodings/cyclic_equivariant/cyclic_equivariant.md
docs/encodings/data_reuploading/data_reuploading.md
docs/encodings/hamiltonian/hamiltonian_encoding.md
docs/encodings/hardware_efficient/hardware_efficient.md
docs/encodings/higher_order_angle/higher_order_angle_encoding.md
docs/encodings/iqp/iqp_encoding.md
docs/encodings/pauli_feature_map/pauli_feature_map.md
docs/encodings/qaoa/qaoa.md
docs/encodings/so2_equivariant/so2_equivariant_feature_map.md
docs/encodings/swap_equivariant/swap_equivariant_feature_map.md
docs/encodings/symmetry_inspired/symmetry_inspired_feature_map.md
docs/encodings/trainable/trainable_encoding.md
docs/encodings/zz_feature_map/zz_feature_map.md
examples/01_basic_usage.py
examples/02_comparing_encodings.py
examples/README.md
experiments/__init__.py
experiments/__main__.py
experiments/checkpoint.py
experiments/classical_baselines.py
experiments/config.py
experiments/datasets.py
experiments/generate_all_tables.py
experiments/kernel.py
experiments/noise_models.py
experiments/noisy_analysis.py
experiments/plotting.py
experiments/results.py
experiments/run_stage.py
experiments/runner.py
experiments/statistical.py
experiments/tradeoff.py
experiments/validate_stage1_resources.py
experiments/validate_stage2_simulability.py
experiments/validate_stage3_expressibility.py
experiments/validate_stage4_entanglement.py
experiments/validate_stage5_trainability.py
experiments/validate_stage7_tradeoff.py
experiments/verify_stage7_results.py
experiments/vqc.py
experiments/configs/dryrun_expressibility.json
experiments/configs/dryrun_resources.json
experiments/configs/stage1_resources.json
experiments/configs/stage2_simulability.json
experiments/configs/stage3_expressibility.json
experiments/configs/stage4_entanglement.json
experiments/configs/stage5_trainability.json
experiments/configs/stage5b_noise.json
experiments/configs/stage6a_vqc.json
experiments/configs/stage6b_kernel.json
experiments/configs/stage7_tradeoff.json
experiments/tests/__init__.py
experiments/tests/test_checkpoint.py
experiments/tests/test_config.py
experiments/tests/test_kernel_comprehensive.py
experiments/tests/test_kernel_smoke.py
experiments/tests/test_noise_smoke.py
experiments/tests/test_noisy_helpers.py
experiments/tests/test_results.py
experiments/tests/test_stage1_smoke.py
experiments/tests/test_vqc_smoke.py
notebooks/README.md
notebooks/encoding_atlas_usage_guide.ipynb
notebooks/test_encoding_atlas.ipynb
src/encoding_atlas/__init__.py
src/encoding_atlas/_version.py
src/encoding_atlas/py.typed
src/encoding_atlas.egg-info/PKG-INFO
src/encoding_atlas.egg-info/SOURCES.txt
src/encoding_atlas.egg-info/dependency_links.txt
src/encoding_atlas.egg-info/requires.txt
src/encoding_atlas.egg-info/top_level.txt
src/encoding_atlas/analysis/__init__.py
src/encoding_atlas/analysis/_utils.py
src/encoding_atlas/analysis/entanglement.py
src/encoding_atlas/analysis/expressibility.py
src/encoding_atlas/analysis/resources.py
src/encoding_atlas/analysis/simulability.py
src/encoding_atlas/analysis/trainability.py
src/encoding_atlas/backends/__init__.py
src/encoding_atlas/backends/_detection.py
src/encoding_atlas/backends/base.py
src/encoding_atlas/backends/cirq.py
src/encoding_atlas/backends/pennylane.py
src/encoding_atlas/backends/qiskit.py
src/encoding_atlas/benchmark/__init__.py
src/encoding_atlas/benchmark/datasets.py
src/encoding_atlas/benchmark/metrics.py
src/encoding_atlas/benchmark/runner.py
src/encoding_atlas/benchmark/statistical.py
src/encoding_atlas/benchmark/visualization.py
src/encoding_atlas/core/__init__.py
src/encoding_atlas/core/base.py
src/encoding_atlas/core/exceptions.py
src/encoding_atlas/core/properties.py
src/encoding_atlas/core/protocols.py
src/encoding_atlas/core/registry.py
src/encoding_atlas/core/types.py
src/encoding_atlas/encodings/__init__.py
src/encoding_atlas/encodings/_registry.py
src/encoding_atlas/encodings/amplitude.py
src/encoding_atlas/encodings/angle.py
src/encoding_atlas/encodings/basis.py
src/encoding_atlas/encodings/data_reuploading.py
src/encoding_atlas/encodings/equivariant_feature_map.py
src/encoding_atlas/encodings/hamiltonian.py
src/encoding_atlas/encodings/hardware_efficient.py
src/encoding_atlas/encodings/higher_order_angle.py
src/encoding_atlas/encodings/iqp.py
src/encoding_atlas/encodings/pauli_feature_map.py
src/encoding_atlas/encodings/qaoa_encoding.py
src/encoding_atlas/encodings/symmetry_inspired_feature_map.py
src/encoding_atlas/encodings/trainable.py
src/encoding_atlas/encodings/zz_feature_map.py
src/encoding_atlas/guide/__init__.py
src/encoding_atlas/guide/decision_tree.py
src/encoding_atlas/guide/recommender.py
src/encoding_atlas/guide/rules.py
src/encoding_atlas/utils/__init__.py
src/encoding_atlas/utils/logging.py
src/encoding_atlas/utils/preprocessing.py
src/encoding_atlas/utils/validation.py
src/encoding_atlas/visualization/__init__.py
src/encoding_atlas/visualization/comparison.py
tests/__init__.py
tests/conftest.py
tests/debug_encodings_visualizer.py
tests/test_encodings_edge_cases.py
tests/test_encodings_realworld.py
tests/fixtures/__init__.py
tests/fixtures/sample_data.py
tests/integration/__init__.py
tests/integration/test_cross_backend_consistency.py
tests/integration/test_encoding_workflow.py
tests/unit/__init__.py
tests/unit/test_docstrings.py
tests/unit/test_memory.py
tests/unit/test_performance.py
tests/unit/test_scalability.py
tests/unit/analysis/__init__.py
tests/unit/analysis/conftest.py
tests/unit/analysis/test_entanglement.py
tests/unit/analysis/test_expressibility.py
tests/unit/analysis/test_resources.py
tests/unit/analysis/test_simulability.py
tests/unit/analysis/test_trainability.py
tests/unit/analysis/test_utils.py
tests/unit/backends/__init__.py
tests/unit/core/__init__.py
tests/unit/core/test_properties.py
tests/unit/core/test_protocols.py
tests/unit/core/test_registry.py
tests/unit/encodings/__init__.py
tests/unit/encodings/test_amplitude.py
tests/unit/encodings/test_angle.py
tests/unit/encodings/test_basis.py
tests/unit/encodings/test_data_reuploading.py
tests/unit/encodings/test_equivariant_feature_map.py
tests/unit/encodings/test_gradient_flow.py
tests/unit/encodings/test_hamiltonian.py
tests/unit/encodings/test_hardware_efficient.py
tests/unit/encodings/test_higher_order_angle.py
tests/unit/encodings/test_iqp.py
tests/unit/encodings/test_pauli_feature_map.py
tests/unit/encodings/test_properties.py
tests/unit/encodings/test_qaoa_encoding.py
tests/unit/encodings/test_reference_comparison.py
tests/unit/encodings/test_symmetry_inspired_feature_map.py
tests/unit/encodings/test_tomography.py
tests/unit/encodings/test_trainable.py
tests/unit/encodings/test_zz_feature_map.py
tests/unit/visualization/__init__.py
tests/unit/visualization/test_comparison.py