You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/accuracy_checker/openvino/tools/accuracy_checker/adapters/README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -459,7 +459,7 @@ AccuracyChecker supports following set of adapters:
459
459
* `noise_suppression` - converts output of audio denoising model to `NoiseSuppressionPrediction`.
460
460
* `output_blob` - name of output layer with processed signal (Optional, if not provided, first found output from model will be used).
461
461
* `kaldi_latgen_faster_mapped` - decodes output Kaldi\* automatic speech recognition model using lattice generation approach with transition model to `CharcterRecognitionPrediction`.
462
-
**Important note** This adapter requires [Kaldi\* installation](https://kaldi-asr.org/doc/install.html)(we recommend to use `67db30cc` commit)
462
+
**Important note** This adapter requires [Kaldi\* installation](https://kaldi-asr.org/doc/install.html)(we recommend to use `67db30cc` commit)
463
463
and providing path to directory with compiled executable apps: `latgen-faster-mapped`, `lattice-scale`, `lattice-add-penalty`, `lattice-best-path`.
464
464
Path directory can be provided using `--kaldi_bin_dir` commandline argument or `KALDI_BIN_DIR` environment variable.
465
465
* `fst_file` - Weighted Finite-State Transducers (WFST) state graph file.
@@ -481,3 +481,9 @@ AccuracyChecker supports following set of adapters:
481
481
* `output_name` - name of output node to convert.
482
482
* `mask_to_binary_classification` - converts output of model represented as segmentation mask to `ArgMaxClassificationPrediction`. Class label calculated as comparision maximal probability in mask with given threshold.
483
483
* `threshold` - probability threshold for label 1 (Optional, default 0.5).
484
+
* `ssd_multilabel` - converting output of SSD-based model where multiple labels can correspond to one box to `DetectionPrediction` representation.
485
+
* `scores_out` - name of output layer with bounding boxes scores.
486
+
* `boxes_out` - name of output layer with bounding boxes coordinates.
0 commit comments