zaczalem poprawiac main.cc w guesie - nadal nie dziala
retusze w lem.cc - dziala jak dzialal w konie byl blednie wpisany autor git-svn-id: svn://atos.wmid.amu.edu.pl/utt@21 e293616e-ec6a-49c2-aa92-f4a8b91c5d16
This commit is contained in:
parent
e2bde98bb1
commit
8abee07844
@ -14,7 +14,7 @@
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
|
||||
int non_standard_config=0;
|
||||
// int non_standard_config=0;
|
||||
|
||||
gengetopt_args_info args;
|
||||
|
||||
@ -22,7 +22,6 @@ int main(int argc, char** argv) {
|
||||
exit(1);
|
||||
|
||||
process_config_files(&args,argv[0]);
|
||||
|
||||
process_common_options(&args,argv[0]);
|
||||
process_guess_options(&args);
|
||||
|
||||
@ -72,50 +71,44 @@ int main(int argc, char** argv) {
|
||||
char outline[MAX_LINE];
|
||||
char parms[MAX_LINE], desc[MAX_LINE], lemma[MAX_LINE];
|
||||
long line_count = 0;
|
||||
// printf("d_f=%s\n", dict_file);
|
||||
|
||||
Guess guess(dictionary);
|
||||
int words_count=0;
|
||||
time_t start_time = time(NULL);
|
||||
|
||||
Segment seg;
|
||||
// Segment seg;
|
||||
Words tab;
|
||||
char* form; //[MAX_FORM];
|
||||
while (fgets(line, MAX_LINE, inputf)==line) {
|
||||
while (fgets(line, MAX_LINE, inputf))
|
||||
{
|
||||
line_count++;
|
||||
int start, len;
|
||||
|
||||
line[strlen(line)-1] = '\0';
|
||||
|
||||
if (!seg.parse(line)) {
|
||||
fprintf(stderr, "B³±d w wej¶ciu (linia: %d)\n", line_count);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (process_seg(seg, args)) {
|
||||
if (!process_seg(line, args))
|
||||
fputs(line,outputf);
|
||||
else
|
||||
{
|
||||
char form[MAX_FORM];
|
||||
words_count++;
|
||||
tab.clear();
|
||||
if (args.input_field_given>0) {
|
||||
form = getInput(args.input_field_arg, args.input_field_given, seg);
|
||||
} else
|
||||
form = seg.form;
|
||||
|
||||
if (NULL == form) {
|
||||
continue;
|
||||
}
|
||||
getfield(line,input_field_prefix,form);
|
||||
if (form==NULL) continue;//BZDURA
|
||||
|
||||
guess.ana(form, tab);
|
||||
|
||||
if ((tab.count()==0) && (!args.no_fail_flag)) {
|
||||
// no guesses - analysis was unsuccessful
|
||||
seg.print(outline); //this is necessary - seg.parse destroys line...
|
||||
fputs(outline, failedf);
|
||||
if (copy_processed)
|
||||
fputs(line, stdout);
|
||||
continue;
|
||||
}
|
||||
if ((tab.count()==0) && (!args.no_fail_flag)) // no guesses - analysis was unsuccessful
|
||||
fputs(line, failedf);
|
||||
else
|
||||
{
|
||||
|
||||
// if (copy_processed)
|
||||
// fputs(line, stdout);
|
||||
// continue;
|
||||
// }
|
||||
// we've got some guesses. Do we want to print it?
|
||||
if (args.only_fail_flag)
|
||||
continue;
|
||||
// if (args.only_fail_flag)
|
||||
// continue;
|
||||
|
||||
float last_weight=0;
|
||||
int i=0;
|
||||
@ -190,3 +183,4 @@ int main(int argc, char** argv) {
|
||||
}
|
||||
cmdline_parser_free(&args);
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
#package: UAM Text Tools
|
||||
#component: kon (search context)
|
||||
#version: 1.0
|
||||
#author: Tomasz Obrebski
|
||||
#author: Justyna Walkowska
|
||||
|
||||
use strict;
|
||||
use Getopt::Long;
|
||||
|
@ -39,9 +39,7 @@ int main(int argc, char** argv) {
|
||||
|
||||
while (fgets(line, MAX_LINE, inputf))
|
||||
{
|
||||
// strcpy(outline,line);
|
||||
++line_count;
|
||||
|
||||
int start, len;
|
||||
|
||||
if (!process_seg(line, args)) // TO POWINNO BYC WCZESNIEJ ZABEZPIECZONE
|
||||
@ -52,7 +50,7 @@ int main(int argc, char** argv) {
|
||||
|
||||
tab.clear();
|
||||
getfield(line,input_field_prefix,form);
|
||||
if (form==NULL) continue;
|
||||
if (form==NULL) continue;//BZDURA
|
||||
|
||||
lem->ana(form, tab);
|
||||
if(tab.count()==0)
|
||||
|
Loading…
Reference in New Issue
Block a user