Using the Turn-On Models
Installation
We recommend using pip, poetry, or uv to install the package.
Authentication
The SDK requires an API key for authentication. Sign in and create a new API key. Remember, your API key is your access secret—keep it safe with environment variables.
Using environment variables:
Python
Or provide the API key directly:
Python
Usage Examples
Using the Turn-On Classifier
The Turn-On Classifier is a model that can classify a given current measurement as either in the Turn-On regime or not.
You can download an example file to follow along with the example:
Python
Output
Using the Turn-On Parameter Extractor
The Turn-On Parameter Extractor is a model that can extract the parameters of a given current measurement.
You can download an example file to follow along with the example:
Python
Output
Plotting the Output
Python

Important Notes for Turn-On Models
- Input dimensions: Input dimensions should ideally match the specified resolution of the model for the best results. You may need to interpolate or downsample your data to match the required shape. You can find the required input shapes for each model on the models overview page.
- Data format: Input data should be a 1D numpy array representing current measurements as a function of gate voltage.
- Output format:
- The classifier outputs a boolean value (
TrueorFalse) indicating whether the measurement exhibits turn-on behavior. - The parameter extractor outputs a dictionary with a
threshold_idxkey, which indicates the index where the turn-on threshold occurs.
- The classifier outputs a boolean value (
- Model versions: Higher version numbers typically indicate improved accuracy and performance. Check the models overview for the latest available versions.

