Robust quantum steerability classification methodology using key feature extraction and matrix-structure-preserving CNNs. Solves generalization failure of SVMs/MLPs on T-diagonal and AVN states. Two-stage approach: extract steerability-determining key features (invariant under SLOCC/LU), preserve 2D matrix structure of quantum states for CNN input. Validated on Phys. Rev. A 100, 022314 dataset. Use when: building quantum state classifiers, quantum entanglement verification, quantum steerabili...
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill robust-steerability-classification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Robust Steerability Classification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-robust-steerability-classification)More formats (shields.io, HTML) on the badges page.
---
name: "robust-steerability-classification"
description: "Robust quantum steerability classification methodology using key feature extraction and matrix-structure-preserving CNNs. Solves generalization failure of SVMs/MLPs on T-diagonal and AVN states. Two-stage approach: extract steerability-determining key features (invariant under SLOCC/LU), preserve 2D matrix structure of quantum states for CNN input. Validated on Phys. Rev. A 100, 022314 dataset. Use when: building quantum state classifiers, quantum entanglement verification, quantum steerability detection, quantum ML with matrix-structured inputs, quantum network security verification. arXiv: 2606.04363. Activation: quantum steerability classification, steerability detection, quantum state ML, matrix structure quantum, SLOCC invariant, AVN states, T-diagonal states, quantum classifier generalization."
---
# Robust Quantum Steerability Classification
Methodology from arXiv:2606.04363 — "Robust Steerability Classification via Key Feature Extraction and Matrix Structure Preservation" (Xin, Meng, Li, Wang, 2026).
## Problem Statement
Standard ML classifiers (SVMs, MLPs, deep perceptrons) trained on full-information quantum state features fail to generalize consistently on T-diagonal states and All-Versus-Nothing (AVN) states — two critical boundary cases for quantum steerability.
## Core Insight
Robust classification requires **both**:
1. **Key feature extraction** — features that determine steerability, invariant under SLOCC (stochastic local operations and classical communication) and local unitary (LU) transformations
2. **Matrix structure preservation** — flattening quantum states to 1D vectors destroys intrinsic matrix structure; convolution on matrix-form features preserves this structure
## Two-Stage Methodology
### Stage 1: Key Feature Extraction
Identify features that are **invariant under SLOCC and LU transformations**:
```python
def extract_steering_key_features(rho):
"""
Extract steerability-determining features from quantum state rho.
Features are invariant under SLOCC and local unitary transformations.
"""
# Key features determine steerability
# SVMs trained on these features overcome instability on T-diagonal states
# but features alone are insufficient for neural-network classifiers
return key_features # steerability-determining invariants
```
### Stage 2: Matrix-Structure-Preserving Classification
```python
def matrix_feature_classifier(rho_matrix):
"""
CNN classifier that preserves 2D matrix structure of quantum states.
Most robust overall performance achieved when:
- Matrix structure is preserved (not flattened to 1D)
- Key features are extracted simultaneously
"""
# Convert quantum state to matrix-form features
matrix_features = compute_matrix_features(rho_matrix)
# CNN preserves spatial/relational structure
return cnn_predict(matrix_features)
```
## Key Findings by Classifier
| Classifier | Random States | T-Diagonal | AVN States |
|---|---|---|---|
| SVM (full features) | OK | Unstable | Fails |
| MLP (full features) | OK | Unstable | Fails |
| Deep Perceptron (full features) | OK | Unstable | Fails |
| SVM (key features) | OK | Stable | Still fails |
| CNN (matrix features + key features) | OK | Stable | Stable |
**Only the CNN with matrix-structure-preserving features + key feature extraction achieves robust generalization across all state types.**
## Applications
- Quantum network security verification (steerability certifies quantum correlations)
- Quantum state classification in quantum information processing
- Entanglement verification for quantum communication protocols
- Quantum machine learning with matrix-structured quantum state inputs
- Projective measurement prediction for axially symmetric states (paper application)
## When Not to Use
- When only random state classification is needed (simple SVM suffices)
- When non-steerability-related quantum properties are the target
- When only T-diagonal states are classified (key-feature SVM is sufficient)
## Verification
1. Train on dataset from Phys. Rev. A 100, 022314 (strictly unsteerable random states, T-diagonal, AVN)
2. Evaluate generalization separately on each state type
3. Verify CNN with matrix features + key features outperforms all alternatives
4. Test on axially symmetric states for measurement count prediction
## Pitfalls
- Key features alone are **insufficient** for neural-network classifiers — must combine with matrix structure preservation
- Flattening quantum states to 1D vectors **destroys** intrinsic matrix structure critical for generalization
- The key feature set was derived from the specific steerability criterion used in the training dataset — may not generalize to other steerability definitions
- Matrix-form features require careful construction to maintain both steerability invariance and CNN-compatible structure
## Related Skills
- `quantum-entanglement-detection` — quantum entanglement detection and characterization
- `qml-spiking-encoding` — quantum ML encoding methods
- `quantum-steerability-classification` (if created) — broader steerability analysis
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!