diff --git a/src/RunTenFoldCrossValidation.sh b/src/RunTenFoldCrossValidation.sh index 1241808..9ba54a7 100755 --- a/src/RunTenFoldCrossValidation.sh +++ b/src/RunTenFoldCrossValidation.sh @@ -2,15 +2,15 @@ # Author: Leonel Figueiredo de Alencar # Last update: September 10, 2024 -# split treebank file in ten folds -TestSuite.py sample.conllu +echo "Split $1 treebank file in ten folds." > log.txt +TestSuite.py $1 -# create 10 different models (this may take up several hours) +echo "Create 10 different models. This may take up several hours." >> log.txt CreateModels.sh -# Parse and test 10 times using each time a different model and test file +echo "Parse and test 10 times using each time a different model and test file." >> log.txt TenFoldCrossVal.sh -# Process the results of parsing with gold tokenization and gold tags -ParseGoldTokResults.py +echo "Process the results of parsing with gold tokenization and gold tags." >> log.txt +ParseGoldTokResults.py > results.txt