diff --git a/maca_morpho/src/predict.h b/maca_morpho/src/predict.h new file mode 100644 index 0000000000000000000000000000000000000000..9967e5997970c372d116e3e4b46837d824150988 --- /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