Home | History | Annotate | Download | only in src

Lines Matching full:activ_func_name

1307     const char* activ_func_name = activ_func == IDENTITY ? "IDENTITY" :
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 );
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;