blob: bd7df9deaad94af4c54758192772b9f8bc2cc8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _LS_NML_H_
#define _LS_NML_H_
#include "cfg.h"
#include "get_local_scores.h"
/* NML = log(ML) - SUM_D log(ML(D)) */
extern scorefun init_NML_scorer();
extern void free_NML_scorer();
#endif
|