The latest version of mert-moses.pl at line 666 invokes: $cmd = create_extractor_script($cmd, $___WORKING_DIR);
which tries to create a file called extractor.sh in directory $__WOKRING_DIR. However, if the value of $__WORKING_DIR is a relative path, and since the command is run already in that directory (see line 433: chdir($___WORKING_DIR) or die "Can't chdir to $___WORKING_DIR"; ) the effect is to try to create a file in a non-exsisting subdirectory. Hence I suggest to drop the second argument to create_extractor_script(). -- Beppe Attardi _______________________________________________ Moses-support mailing list [email protected] http://mailman.mit.edu/mailman/listinfo/moses-support
