SleepKit CLI
The SleepKit command line interface (CLI) makes it easy to run a variety of single-line commands without the need for writing any code. You can run all tasks and modes from the terminal with the sleepkit
command.
Example
sleepkit
commands use the following syntax:
Or using short flags:
Where:
MODE
is one ofdownload
,feature
,train
,evaluate
,export
, ordemo
TASK
is one ofdetect
,stage
,apnea
, orarousal
CONFIG
is configuration as JSON content or file path
Download datasets specified in the configuration file.
Extract features from the datasets using the supplied configuration file.
Train a task model using the supplied configuration file.
Evaluate the trained task model using the supplied configuration file.
Configuration File
The configuration file is a JSON file that contains all the necessary parameters for the task. The configuration file can be passed as a file path or as a JSON string. In addition, a single configuration file can be used for all modes
- only needed parameters will be extracted for the given mode
running. Please refer to the Configuration section for more details.
Download
The download
command is used to download all datasets specified in the configuration file. Please refer to Datasets for details on the available datasets.
CLI
The following command will download and prepare all datasets specified in configuration JSON file.
Feature
The feature
command is used to extract features from the datasets specified in the configuration file using the specified feature set generator. Additional parameters can be set in the configuration file. Please refer to FeatureParams and TaskParams to see supported options.
CLI
The following command will extract features from the datasets using the reference configuration:
Train
The train
command is used to train a SleepKit model for the specified task
and feature set
. Each task provides a reference routine for training the model. The routine can be customized via the configuration file. Please refer to TaskParams to see supported options.
CLI
The following command will train a task model using the reference configuration:
Evaluate
The evaluate
command will test the performance of the model on the reserved test sets for the specified task
. The routine can be customized via the configuration file. Please refer to TaskParams to see supported options.
CLI
The following command will test the task model using the reference configuration:
Export
The export
command will convert the trained TensorFlow model into both TensorFlow Lite (TFL) and TensorFlow Lite for micro-controller (TFLM) variants. The command will also verify the models' outputs match. The activations and weights can be quantized by configuring the quantization
section in the configuration file. Once converted, the TFLM header file will be copied to location specified by tflm_file
. Please refer to TaskParams to see supported options.
CLI
The following command will export the task model to TF Lite and TFLM:
Demo
The demo
command is used to run a task-level demonstration using either the PC or EVB as backend inference engine. Please refer to TaskParams to see supported options.
CLI
The following command will run a demo on the trained task model using the same supplied configuration file.