SOD C/C++ API - RealNet Architecture

Syntax

void sod_realnet_train_release(sod_realnet_trainer *pTrainer);

Description

Release the resources allocated to a sod_realnet_trainer object. This procedure must be called each time you have done working with a sod_realnet_trainer (i.e. training your models) in order to avoid memory leaks.

Parameters

sod_realnet_trainer    *pTrainer

A pointer to a valid sod_realnet_trainer object obtained from a prior successful call to sod_realnet_train_init().

Return Value

None.

Example

Checkout the introduction course, the C/C++ samples on the download page or refer to the SOD Github Repository.

See also

sod_realnet_train_initsod_realnet_train_configsod_realnet_train_start.


Back