Home
last modified time | relevance | path

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

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