Searched refs:activ_func_name (Results 1 - 1 of 1) sorted by relevance

/external/opencv/ml/src/
H A Dmlann_mlp.cpp1307 const char* activ_func_name = activ_func == IDENTITY ? "IDENTITY" : local
1311 if( activ_func_name )
1312 cvWriteString( fs, "activation_function", activ_func_name );
1406 const char* activ_func_name = cvReadStringByName( fs, node, "activation_function", 0 ); local
1409 if( activ_func_name )
1410 activ_func = strcmp( activ_func_name, "SIGMOID_SYM" ) == 0 ? SIGMOID_SYM :
1411 strcmp( activ_func_name, "IDENTITY" ) == 0 ? IDENTITY :
1412 strcmp( activ_func_name, "GAUSSIAN" ) == 0 ? GAUSSIAN : 0;

Completed in 111 milliseconds