Skip to content
Snippets Groups Projects
Commit f75f5e8c authored by Alexis Nasr's avatar Alexis Nasr
Browse files

changed queue length in maca_trans_tagger and maca_trans_parser (should be dynamic git status)

parent 2349ba2a
Branches
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ void simple_decoder_buffer(context *ctx, FILE *f, feature_table *ft, int root_la
int mvt_label;
float max;
feat_vec *fv = feat_vec_new(feature_types_nb);
config *c = config_initial(f, ctx->mcd_struct, 1000, 0);
config *c = config_initial(f, ctx->mcd_struct, 10000, 0);
/* read a sentence and put it in the buffer */
while(queue_read_sentence(c->bf, f, ctx->mcd_struct)){
......
......@@ -31,7 +31,7 @@ void simple_decoder_buffer(context *ctx)
int i;
word *w = NULL;
FILE *f = (ctx->input_filename)? myfopen(ctx->input_filename, "r") : stdin;
config *c = config_initial(f, ctx->mcd_struct, 1000, 0);
config *c = config_initial(f, ctx->mcd_struct, 10000, 0);
/* read a sentence and put it in the buffer */
while(queue_read_sentence(c->bf, f, ctx->mcd_struct)){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment