clear_dl_classifier
— Clear a deep-learning-based classifier.
clear_dl_classifier
is obsolete and is only provided for
reasons of backward compatibility. New applications should use the
common used CNN-based operator clear_dl_model
instead.
clear_dl_classifier( : : DLClassifierHandle : )
clear_dl_classifier
clears the handle of the deep-learning-based
classifier given by DLClassifierHandle
, that was created with
read_dl_classifier
, and frees all memory required for the
classifier.
After calling clear_dl_classifier
, the classifier can no longer be
used. The handle DLClassifierHandle
becomes invalid.
For an explanation of the concept of deep-learning-based classification see the introduction of chapter Deep Learning / Classification. The workflow involving this legacy operator is described in the chapter Legacy / DL Classification.
This operator modifies the state of the following input parameter:
During execution of this operator, access to the value of this parameter must be synchronized if it is used across multiple threads.
DLClassifierHandle
(input_control, state is modified) dl_classifier(-array) →
(handle)
Handle of the deep-learning-based classifier.
If the parameters are valid, the operator
clear_dl_classifier
returns the value 2 (
H_MSG_TRUE)
. If
necessary, an exception is raised.
read_dl_classifier
,
apply_dl_classifier
,
train_dl_classifier_batch
Deep Learning Inference