Overview

Our AI-driven models accelerate quantum device characterization by automating health checks, calibration, and validation. The Conductor Quantum SDK delivers critical parameters in minutes rather than weeks, streamlining your path from raw transport data to operational qubits.

Models return either:

Boolean classification – e.g. True if the measurement shows pinch‑off
Dictionary of indices – parameter names mapped to the index (not the actual voltage) in your input array

Regardless of the specific model, the SDK always wraps the response in a ModelResultInfo object:

FieldTypeDescription
idstrUnique identifier for the execution
modelstrName of the executed model
created_atdatetimeTimestamp (UTC) when the execution was created
input_file_namestrName of the uploaded input file
input_file_sizeintSize of the input file in bytes
outputDictModel‑specific output (boolean or dictionary of indices)

Model Versioning

Our models use a versioning scheme (v0, v1, etc.) where higher numbers generally indicate improved accuracy and performance. When selecting a model version, consider:

  • Newer versions typically offer better accuracy and robustness
  • Specialized versions for specific data types or conditions
  • Performance variations based on your measurement characteristics

We recommend testing multiple versions to find the optimal one for your quantum device data.

Charge Stability Diagram Analysis

ModelDescriptionInput ShapeOutput KeysEndpoints
charge-stability-diagram-segmenter-v0Segments a charge stability diagram into different regions(128, 128)segmentationExecute

You can see how to use the charge stability diagram models on the Charge Stability Diagram Models page.

Coulomb Blockade Analysis

ModelDescriptionInput ShapeOutput KeysEndpoints
coulomb-blockade-classifier-v0Determines if a current measurement exhibits Coulomb blockade characteristics(n, )classificationExecute
coulomb-blockade-peak-detector-v0Detects the locations of Coulomb blockade peaks in current measurement(n, )peak_indicesExecute
coulomb-blockade-peak-detector-v1Detects the locations of Coulomb blockade peaks in current measurement(n, )peak_indicesExecute

You can see how to use the Coulomb Blockade models on the Coulomb Blockade Models page.

Pinch-off Analysis

ModelDescriptionInput ShapeOutput KeysEndpoints
pinch-off-classifier-v0Determines if a current measurement exhibits pinch-off characteristics(n, )classificationExecute
pinch-off-parameter-extractor-v0Extracts key parameters from pinch-off measurements (cut_off_voltage, transition_voltage, saturation_voltage)(n, )cut_off_index, transition_index, saturation_indexExecute

You can see how to use the Pinch-off models on the Pinch-off Models page.

Turn-on Analysis

ModelDescriptionInput ShapeOutput KeysEndpoints
turn-on-classifier-v0Determines if a current measurement exhibits turn-on characteristics(n, )classificationExecute
turn-on-parameter-extractor-v0Extracts the threshold voltage from turn-on measurements(n, )threshold_indexExecute

You can see how to use the Turn-on models on the Turn-on Models page.