From f0ea2309fdc20d2b1bf1d7cf44489797b5be9c1c Mon Sep 17 00:00:00 2001 From: Marjorie Armando <marjorie.armando.1@etu.univ-amu.fr> Date: Mon, 17 Apr 2017 23:17:08 +0200 Subject: [PATCH] generate train and test files, generate cff, predict test's forms' classes --- maca_morpho/src/fplm2cff.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 maca_morpho/src/fplm2cff.h diff --git a/maca_morpho/src/fplm2cff.h b/maca_morpho/src/fplm2cff.h new file mode 100644 index 0000000..33b8d98 --- /dev/null +++ b/maca_morpho/src/fplm2cff.h @@ -0,0 +1,16 @@ +#ifndef __FPLM2CFF__ +#define __FPLM2CFF__ + + #include "maca_morpho_context.h" + #include "feat_model.h" + #include "feat_vec.h" + #include "dico.h" + #include "util.h" + #include "vectorize.h" + #include "fplm.h" + + void create_cff(context* ctx); + void write_cff(FILE *cff, CLASS class, char* classes_array, char* form, char* morpho, feat_vec *fv, feat_model *fm, dico *dico_features); + void fplm2cff_help_message(context *ctx); + +#endif -- GitLab