% my first script
set training_data='data/wsj_60000'.
set test_data='data/wsj_test'.
set algorithm='algorithms/brill'.
set templates='templates/myTestTemplates2'.
set score_threshold=3.
set accuracy_threshold=0.5.
set verbosity=2.

echo("Learning....").
learn_rule_seq.

echo('Testing the learned rule sequence...').

test_rule_seq.

echo("saving the ressult..").
%save_stack(test/myrules).
save('test/myscript.pl').

echo('Generating data for the Error Browser...').

write_html_error_data.

echo('Finished!').
