⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nn_var_str.h

📁 快速傅立叶变换程序代码,学信号的同学,可要注意了
💻 H
字号:
  int report ;      /* reporting style      <1>    */  int verbose ;     /* verbosity 0/1/2      <1>    */  int decverbose ;  /* verbosity in decoding <1>    */  int decwrite ;    /* write decoding info to file <0>    */  char decfile[100] ;/* file for decoding info <->    */  /* Neural net initialization */  int read ;        /* whether to read wts  <0>    */  char infile[100] ;/* weights from (instead of default) <->    */  char outfile[100] ;/* weights out (instead of default) <->    */  int init_rule ;   /* how to init wts      <1>    */  double def_w ;    /* default initial weight <1.0>  */  double def_b ;    /* default initial bias <0.0>  */  double sigma_w0 ; /* initial random wts   <0.3>  */  long int wseed ;  /* weight randomization <2489> */  /* 	About training */  int train ;       /* whether to train     <0>    */  int train_n ;     /* training number      <100>  */  int test_n ;      /* training number      <1000> */  long int trseed ; /* defines training set <4896> */  long int teseed ; /* test set             <126999> */  int regularize ;  /* type of regularization 0/1/2 <1>    */  /* Optimization procedure */  int opt ;         /* macopt1 or 2         <2>    */  int LOOP ;        /* Number of macopt runs <5>    */  int itmax ;       /* max no line searches <100>  */  double tolmin ;   /* final tolerance in training <0.00001> */  double tol0 ;     /* initial tolerance in training <0.1>  */  int rich ;        /* expensive optimizer? <0>    */  int end_on_step ; /* termination condition is that step is small <1>    */  int CG ;          /* whether to check gradient, on how many <0>    */  double epsilon ;  /* epsilon for check gradient <0.0001> */  int evalH ;       /* evaluate hard performance measures <1>    */  /* Neural net decoding procedure */  int hitlist_policy ;/* 1=if threshold exceeded; 2=sort <2>    */  double hitlist_thresh ;/* hitlist threshold    <0.99> */  int hitlist_n ;   /* number to aim to hit <10>   */  double hitlist_low ;/* -                    <0.5>  */  int decodits ;    /* max number of iterations to do when decoding <10>   */  int decodn ;      /* number of examples to try to decode <1000> */  long int decodseed ;/* seed for decoding tests <126999> */  /* various leftovers */  int write ;       /* whether to write weights <1>    */  int writeit ;     /* undefined weight writing flag <0>    */  int RC ;          /* no of reg classes    <2>    */  double tolf ;     /* factor by which tolerance decreases <0.5>  */  double tol ;      /* tolerance in training <0.01> */  int itEH ;        /* iterative decoder's error <-1>   */  int itEHwb ;      /* iterative decoder's error (whole blocks) <-1>   */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -