📄 nn.h
字号:
/* nn.h neural net definition for MNC moved to mnc.h( NB take care to distinguish net->w and net->wo )*//* routines in nn.c :*/void nn_defaults ( mnc_net * , mnc_net_control * ) ;int nn_make_sense ( mnc_net_control * , mnc_all * ) ;int nn_allocate ( fe_min_param * , mnc_net * , mnc_net_control * , mnc_all * ) ;int nn_set_up_rc ( mnc_net * , mnc_net_control * , mnc_all * ) ;int nn_initialize ( mnc_net * , mnc_net_control * , mnc_all * ) ; int nn_weight_init ( mnc_net * , mnc_net_control * , mnc_all * ) ;int nn_train ( mnc_net * , mnc_net_control * , mnc_all * ) ;void nn_eval_errors ( mnc_net * , mnc_all * ) ;int nn_iter_error_on ( mnc_net * , mnc_all * , int ) ;void nn_say_errors ( FILE * , mnc_net_control * , int ) ;void nn_say_headings ( FILE * , mnc_net_control * , int ) ;double nn_objective ( double * , void * ) ; double nn_error_on ( mnc_net * , mnc_all * , int ) ; void nn_derivative ( double * , double * , void * ) ;void nn_forward_pass ( mnc_net * ) ;int nn_hitlist ( mnc_net * , mnc_all * ) ;int nn_flip_and_score ( mnc_net * , mnc_all * ) ;int nn_hard_errors ( mnc_net * ) ;double nn_error_signal ( mnc_net * ) ;void nn_backward_pass ( mnc_net * ) ;double nn_weight_energy ( mnc_net * , mnc_net_control * ) ;void nn_add_regularizer ( mnc_net * , mnc_net_control * ) ;double nn_act_fun ( int , double * , double * ) ;double nn_d_act_fun (int , double , double , double ) ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -