Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
leoalenc committed Sep 11, 2024
1 parent 1a1bb44 commit 16ac8f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/RunTenFoldCrossValidation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 16ac8f5

Please sign in to comment.