Searched refs:activ_func_name (Results 1 – 1 of 1) sorted by relevance
1307 const char* activ_func_name = activ_func == IDENTITY ? "IDENTITY" : in write_params() local1311 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() local1409 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()