Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: fixed typos

...

Code Block
languagebash
$JOSHUA/bin/pipeline.pl \
  --rundir 2 \
  --readme "Baseline phrase run" \
  --source es \
  --target en \
  --type phrase \
  --corpus $FISHER/corpus/ldc/fisher_train \
  --tune $FISHER/corpus/ldc/fisher_dev \
  --test $FISHER/corpus/ldc/fisher_dev2 \
  --maxlen 11 \
  --maxlen-tune 11 \
  --maxlentmaxlen-test 11 \
  --tuner-iterations 1 \
  --lm-order 3
 

...

Code Block
languagebash
$JOSHUA/bin/pipeline.pl \
  --rundir 3 \
  --readme "Baseline phrase run, picking up from run 1" \
  --source es \
  --target en \
  --type hiero \
  --first -step model --no-prepare \
  --alignment 1/alignments/training.align \
  --corpus 1/data/train/corpus \
  --tune 1/data/tune/corpus  \
  --test 1/data/test/corpus \
  --maxlen 11 \
  --maxlen-tune 11 \
  --maxlentmaxlen-test 11 \
  --tuner-iterations 1 \
  --lm-order 3
 

...