From c4f8f22ffe94374d6ef149cfa19ff088b99d17d2 Mon Sep 17 00:00:00 2001 From: Marjorie Armando <marjorie.armando.1@etu.univ-amu.fr> Date: Mon, 17 Apr 2017 23:19:26 +0200 Subject: [PATCH] generate train and test files, generate cff, predict test's forms' classes --- maca_morpho/src/predict.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 maca_morpho/src/predict.h diff --git a/maca_morpho/src/predict.h b/maca_morpho/src/predict.h new file mode 100644 index 0000000..9967e59 --- /dev/null +++ b/maca_morpho/src/predict.h @@ -0,0 +1,17 @@ +#ifndef __PREDICT__ +#define __PREDICT__ + + #include "maca_morpho_context.h" + #include "feat_model.h" + #include "feat_vec.h" + #include "dico.h" + #include "util.h" + #include "vectorize.h" + #include "feature_table.h" + #include "fplm.h" + + void create_predictions_file(context* ctx); + void make_prediction(FILE* predictions, char* form, char* morpho, feature_table *cfw, feat_vec *fv, dico *dico_features, feat_model *fm); + void predict_help_message(context *ctx); + +#endif -- GitLab