|
LoadModelFromFile
|
Accueil Précédent Suivant |
C/C++ declaration
extern long __stdcall LoadModelFromFile(char * FileName, long Trainable);
Pascal declaration
Function LoadModelFromFile(FileName: PChar; Trainable): LongInt; stdcall;
Creating a model.from a file
IN → FileName : File name.
IN → Trainable : 0, no training, 1, with training
Return → Model handle, <= 0 if failed.
Remark : The model created with LoadModelFromFile can be used, depending on the license level, to perform transfer, with or without leverage computation. It can be used in a training process only if Trainable is not 0..