Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/training/cmert-0.5/data.h')
-rwxr-xr-xscripts/training/cmert-0.5/data.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/training/cmert-0.5/data.h b/scripts/training/cmert-0.5/data.h
deleted file mode 100755
index 1a17d15c3..000000000
--- a/scripts/training/cmert-0.5/data.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef DATA_H
-#define DATA_H
-
-typedef struct {
- float *features;
- int *comps;
- float m, b; // slope and intercept, used as scratch space
-} candidate_t;
-
-typedef struct {
- candidate_t **sents;
- int sents_n, sents_max, *cands_n;
-} data_t;
-
-data_t *read_data(void);
-
-#endif